//
//	Cufon
//
Cufon.replace('.AgoraSlabPro, .topnav li a, h1, h2, h3, h4, .featureBuckets p, .slideshow p.productName', { fontFamily: 'AgoraSlabPro', hover:{ color: '#771430' } });
Cufon.replace('#footer li a, #logotype', { fontFamily: 'AgoraSlabPro', textShadow: '2px 1px #1B443E', hover:{ color: '#FF0', textShadow: '2px 1px #4C4C00' } });
Cufon.replace('.postThumbList a, .productCatList a', { fontFamily: 'AgoraSlabPro', hover:{ color: '#FF0' } });

//
//	JQuery
//
$(function(){
	$('a.topLink').hover(
		function(){ $(this).stop().animate( { backgroundPosition: "(0 100%)"}, 300 ) },
		function(){ $(this).stop().animate( { backgroundPosition: "(0 300px)"}, 200 ) }
	);
	$('.postThumbList li a, .productCatList li a')
		.mouseover( function(){ $(this).parents('li').stop().animate( { backgroundPosition: "(100% 100%)"}, 500 ) } )
		.mouseout( function(){ $(this).parents('li').stop().animate( { backgroundPosition: "(100% 0%)"}, 500 ) } );
});
