
/*
* display goodies list
*/
function showGoodies(id) {
	$(".goodiesLink").hide();
	
	$("#div_goodies_" + id).show();
	
	$("#goodiesBlock").removeClass("defaultGoodiesBlock");
}


function closeGoodies(id) {
	$(".goodiesLink").show();
	
	$("#div_goodies_" + id).hide();
	
	$("#goodiesBlock").addClass("defaultGoodiesBlock");
}


function shareOnFaceBook() {
	u = location.href;
	t = document.title;
	
	window.open("http://www.facebook.com/sharer.php?u=" + encodeURIComponent(u) + "&t=SunValley", "sharer", "toolbar=0,status=0,width=626,height=436");
	
	return false;
}


function shareOnTwitter() {
	u = location.href;
	t = document.title;
	
	window.open("http://www.twitter.com/share?url=" + encodeURIComponent(u) + "&text=SunValley", "share", "toolbar=0,status=0,width=626,height=436");
	
	return false;
}
