//project  page jquery initialization
$().ready(function(){
	//fix footer position
	//2009-12-16: do not effect ecommerces page
	if ($("#ecommerces").length < 1) {
		h = $("#wrapper").height();
		w = $("#wrapper").width();
		$(".footer").css({
			position: "absolute",
			top: (h-20)+"px"
		});
	}
	//-
	
	//dropdown menu - comment form
	$("#sendCommentForm").find(".loewDropDownMenu").loewyDropDownMenu({
		width: 150,
		slideUpSpeed: 300,
		slideDownSpeed: 400
	});
	//-
	
	//dropdown menu - work menu
	$("#homenav").find(".loewDropDownMenu").loewyDropDownMenu({
		width: 115,
		slideUpSpeed: 300,
		slideDownSpeed: 400
	});
	
	//Sort by dropdown menu
	if ($.loewy.dropDownMenu) {
		$("#homenavWork").find("li.menuitem").mousedown(function(e) {
			//loadSortList($(this).attr("rel"));
			
			rel = $(this).attr("rel");
			if (rel != undefined && rel != "") {
				document.location.href = "/work/"+rel+"/";
			}
		});
	} else {
		$("#homenavWork").find("select").find("option").click(function(e) {
			//loadSortList(this.value);
			rel = this.value
			if (rel != undefined && rel != "") {
				document.location.href = "/work/"+rel+"/";
			}
		});
	}
	//-
	
	//homenav
	//$(".gridMenuItem, .gridMenuContainer", $("#homenav")).find(".loewDropDownMenu").css("display","none");
	$(".homenavMenuItem","#homenav").loewyGridMenu({
		animType: 2,
		backgroundColor: "#1A314F"
	});
	//-
	
	if ($.loewy && $.loewy.Accordion) {
		$('#accordion').loewyAccordion({ });
	}
	 
});
