$(document).ready(function() {

	$("ul.ar li:even").addClass("odd");

	$('#contact-form dd').click(function(){

		$(this).prev('dt').hide();

	}); 



	$("ul.products li a").hover(function(){

		$(this).find("span").stop().animate({top:"10"},"slow" , "easeOutBounce" );

		},function (){$(this).find("span").stop().animate({top:"-238"}, 300 );

	});

});
