$(function(){
						   
	if ($.browser.msie && $.browser.version < 7)
		$('img[src$=.png]').pngfix();

	$('img[data-hover],input[data-hover]').imghover();
	

	$(".contentBlockBottom a").hover(function(){
		$(this).stop().animate({ paddingLeft :"18px" },{duration:300});
	}, function(){
		$(this).stop().animate({ paddingLeft :"15px" },{duration:300});
	});
	
});

