$(document).ready(function(){
						   
	$('#gototop').click(function(){$('#top').ScrollTo(1000);return false});
	
	$('#full h3').fadeTo("fast", 0.6);
	
	//fade thumb images
	$('#thumb img, #details img').hover(function() {
		$(this).fadeTo("slow", 0.5);
	}, function() {
		$(this).fadeTo("slow", 1);
	});


	$('#full h3').mouseover(function() {
		$(this).fadeTo("slow", 1);
	});
	$('#full h3').mouseout(function() {
		$(this).fadeTo("fast", 0.6);
	});

	$('.bestof').prepend('<div class="best-of"></div>');

	
	
	
}); //close doc ready


//////////////////// scroll by jquery ////////////////////////////////////////////////////////////////////////////

