jQuery.noConflict();

jQuery(document).ready(function() {
	jQuery('.button1').hover(function(){
		jQuery('.facebook1').animate({marginTop: '-15px'},{queue:false,duration:200});}, function() {jQuery('.facebook1').animate({marginTop: '0px'},{queue:false,duration:200});
	});
	jQuery('.button2').hover(function(){
		jQuery('.twitter1').animate({marginTop: '-15px'},{queue:false,duration:200});}, function() {jQuery('.twitter1').animate({marginTop: '0px'},{queue:false,duration:200});
	});
	jQuery('.button3').hover(function(){
		jQuery('.youtube1').animate({marginTop: '-15px'},{queue:false,duration:200});}, function() {jQuery('.youtube1').animate({marginTop: '0px'},{queue:false,duration:200});
	});
   jQuery('.menu-main-nav-container li').hover(function() {
      jQuery('ul', this).show(250);}, function () {jQuery('ul', this).hide(250);
   });
});  
