
$(document).ready(function() {
	removeFlicker();
	initDetailLinks();
});

function removeFlicker(){
	try {
	document.execCommand("BackgroundImageCache",false,true);
	} catch (e) {
		
	}
}

function initDetailLinks(){
	divArr = ['sendtofriend','wishlist'];

	
	$('.stf').click(function(){
		$('#wishlist').hide();
		$('#sendtofriend').show();
		$('#sendtofriend').highlightFade({start:'rgb(250,247,236)', end:'rgb(255,255,255)'});
		return false;
		});
		
	
	$('.wish').click(function(){
		$('#sendtofriend').hide();
		$('#wishlist').show();
		$('#wishlist').highlightFade({start:'rgb(250,247,236)', end:'rgb(255,255,255)'});
		return false;
		});		
		
}

	
