$j(document).ready(function() {
	$j("#slideshow").cycle({cleartypeNoBg:true});
	$j("._gallery ul li").each(function(i){
		if((i % 8) == 7) {
			$j(this).addClass("last");
		}
	});

	$j("#slideshow").appendTo("#wrapper");
	
	// # Modal Window
	$j("a.modal").prettyPhoto({
		modal : true
		//scrolling: "no",
		//autoScale: "true"
	});
	
	if($j.browser.mozilla) {
		$j(".heading, ._gallery ._title").css("font-family","Arial");
	}
	
	// # IE Helpers
	$j('#nav>li:last-child').addClass('_last-child');
	$j('fieldset:last-child').addClass('_last-child'); 
	$j('p:last-child').addClass('_last-child'); 
});

