// Jquery
$(document).ready(function(){
		var section = window.location.search.substring(9);
		if (section != "") {
			$("#portfolio-masterpage").find("div").hide();
			$("#"+window.location.search.substring(9)+"").fadeIn("normal");
			$("#showall").fadeIn("normal");
		} else {
			$("#showall").hide();
		}
		$("#ddlPortfolio").change(function(event){
			$("#portfolio-masterpage").find("div").hide();
			$("#"+this.value+"").fadeIn("normal");
			$("#showall").fadeIn("normal");
		});
		$("#showall").click(function(event){
			if (section == "") {
				$("#portfolio-masterpage").find("div").fadeIn("normal");
				$("#showall").hide();
			} else {
				window.location = "/portfolio/";
			}
			document.getElementById("ddlPortfolio").selectedIndex = 0;
			return false;
		});
	
});