jQuery.noConflict();  
jQuery(document).ready(function(){  
{

	jQuery(".viewdetails").css('opacity', 0.85);

	jQuery(".viewdetails").hover
		(
			function()
			{
				jQuery(this).animate({opacity: 1.0}, 300 );
 
			},
			
			function()
			{
				jQuery(this).animate({opacity: 0.85}, 300 );
			}
		);
		
		jQuery(".buybuttons").css('opacity', 0.85);

	jQuery(".buybuttons").hover
		(
			function()
			{
				jQuery(this).animate({opacity: 1.0}, 300 );
 
			},
			
			function()
			{
				jQuery(this).animate({opacity: 0.85}, 300 );
			}
		);
		
		jQuery(".buybuttons_nomargin").css('opacity', 0.85);

	jQuery(".buybuttons_nomargin").hover
		(
			function()
			{
				jQuery(this).animate({opacity: 1.0}, 300 );
 
			},
			
			function()
			{
				jQuery(this).animate({opacity: 0.85}, 300 );
			}
		);
		
}
});



