/*
*p|r jQuery Goodies
*Add all common document.ready calls here
*/

var sortClass = '';

$(document).ready(function(){
	
	//$(".zoom-me").fancybox();
	
	// Homepage Carousel
	$("#project-slider-wrap").jCarouselLite2({
		btnNext: "#next",
		btnPrev: "#back",
		circular: true,
		easing: "easeInOutQuad",
		speed: 900
	});

	
	// IE fixes
	if (jQuery.browser.msie){
		//Remove ALT in IE
		$('#peeps-list a img').removeAttr("alt");
		
		// IE 6 specific fixes
		if(jQuery.browser.version < 7){
			// reset the background for the first item in home page LIs
			$('#project-slider li').css('background-image',$('#project-slider li').eq(1).css('background-image'));
			
			// hide the buttons because the scroll doesn't work right
			$('#next, #back').hide();
		}
	}

	//Set width and height w/jquery
	$('#work-list-slider, #work-list-slider li.page, #work-list-wrapper').width(960).height(475);


});//End document.ready