// SPECIAL EFFECTS
// 
// use class .fadeIn to apply a slow fade-in to ANY element.
// 

jQuery(document).ready(function (){
	//jQuery(".fadeIn").hide().fadeIn(400);
	jQuery(".fadeIn").hover(
	  function () {
	  	jQuery(this).hide().fadeIn(800);
	  }, 
	  function () {
		
	  }
	);
});


	$(document).ready(function(){ 
        $("#menulist img").hover(
		  function () {
			$(this).animate({marginTop: 20},100);
		  }, 
		  function () {
			$(this).animate({marginTop: 0},100);
		  }
		);
    });
