//recent projects page jquery initialization
$().ready(function(){
	//fix footer position
	h = $("#wrapper").height();
	w = $("#wrapper").width();
	$(".footer").css({
		position: "absolute",
		top: (h-20)+"px"
	});
	//-
	


		
	//thumbnails
	if ($.loewy.cycle) {
		$(".cycle").loewyCycle({
			width: 150,
			height: 208,
			circleSpeed: 600,
			mouseoverDelay: 2
		});
	}
	
	//-
	

	

	
	//---------------------- project listings -------------------------
	//Sort by dropdown menu
	if ($.loewy.dropDownMenu) {
		$(".recent_projects").find("li.menuitem").mousedown(function(e) {
			rel = $(this).attr("rel");
			if (rel != undefined && rel != "") {
				document.location.href = "/work/"+rel+"/";
			}
		});
	} else {
		$(".recent_projects").find("select").find("option").click(function(e) {
			rel = this.value
			if (rel != undefined && rel != "") {
				document.location.href = "/work/"+rel+"/";
			}
		});
	}
});