$(document).ready(function(){
	
	
	/*********************************
	 START OF CUFON REPLACEMENT
	*********************************/
	
	Cufon.replace('#video_title,#price,#the_price,.ribbon_title,.comment_details,.comment_author,.listing_name',{hover: 'true'});  
	
	/*********************************
	 END OF CUFON REPLACEMENT
	*********************************/
	
	
	/*********************************
	 START OF LOGO HOVER
	*********************************/
	
	$('#logo').hover(
		function(){
			$(this).stop().animate({'opacity':0.60},500)
		},
		function(){
			$(this).stop().animate({'opacity':1},500)
		}
	);
	
	/*********************************
	 END OF LOGO HOVER
	*********************************/
	
	
	/****************************************
	 START OF AUTOMATIC LISTING NAME HEIGHT
	****************************************/
	
	$('.listing_name').each(
		function(i){
			if($(this).height() > 18)
			{
				$(this).css('bottom','35px');
			}
		}
	);
	
	/****************************************
	 END OF AUTOMATIC LISTING NAME HEIGHT
	****************************************/
	
	
	/*********************************
	 START OF MOZILLA RIBBON BUG
	*********************************/
	if($.browser.mozilla && jQuery.browser.version == '1.9.0.15'){
		$('.ribbon_left').css('margin-top','12px');
	}
	
	/*********************************
	 END OF MOZILLA RIBBON BUG
	*********************************/
	
	
	/*********************************
	 START OF PLAY LINK
	*********************************/
	$('.listing li .listing_play').hover(
		function(){
			$(this).css('opacity',1);
		},
		function(){
			$(this).css('opacity',0.7);
		}
	);
	/*********************************
	 END OF PLAY LINK
	*********************************/
	
});//end of function ready
