function toggleDisplay(on, off){
	document.getElementById('choosegeneric').style.display = "none";
	document.getElementById('upload').style.display = "none";
	document.getElementById('buildyourown').style.display = "none";
	document.getElementById('needconsult').style.display = "none";
	document.getElementById(on).style.display = "block";
	return false;
}

function extLinks() {
	$('a.outbound').click(function(){
		window.open(this.href);
		return false;
	});
}

function jqCorners(){
	$("#footer").corner("round top 15px");
	$(".reviews").corner("round 10px");
	$(".comment").corner("round 5px");
	$(".comment h4").corner("round top 5px");
}

function jqShadows(){
	$("img.listthum").wrap("<div class='wrap1'><div class='wrap2'>" + "<div class='wrap3'></div></div></div>");
	$("img.listthum2").wrap("<div class='wrap1'><div class='wrap2'>" + "<div class='wrap3'></div></div></div>");
}

function jqShowReviews(){
	$(".reviews").hide();
	$(".buttons>a.b_reviews").click(function() {
		$(this).parent().next("div.reviews").slideToggle("normal");
	});
}
function jsWarning(){
	$("#js_warning").remove();
}


jQuery(function(){
	jQuery('form.rating').rating().animate({opacity: 'show'}, 2000);
});

$(document).ready(jqCorners).ready(jqShowReviews).ready(jqShadows).ready(extLinks).ready(jsWarning);

