// JavaScript Document
jQuery(document).ready(function(){

	// Index boxes
    jQuery(function() {
        jQuery('ul.hover_block li').hover(function(){
            jQuery(this).find('img').animate({top:'180px'},{queue:false,duration:500});
        }, function(){
            jQuery(this).find('img').animate({top:'0px'},{queue:false,duration:500});
        });
    });
	
	jQuery("#desc ul li a").hover(
		function() {
			jQuery(this).stop().animate({
				paddingTop: '2px'
			}, 200);
	   	},
		function() {
			jQuery(this).stop().animate({
				paddingTop: '0px'
			}, 200);		
		});				
	

});
