jQuery(document).ready(function($) {
	/*var theInt = null;
	var $crosslink;
	var curclicked = 0;
	$crosslink = $(".slideTitle");
	
	theInterval();		
	function theInterval(cur){
		clearInterval(theInt);
		if( typeof cur != 'undefined' )
			curclicked = cur;
		$crosslink.removeClass("active-thumb");
		$(".slideTitle").eq(curclicked).stop().trigger('autoplay');		
		theInt = setInterval(function(){
			$crosslink.removeClass("active-thumb");
			$(".slideTitle").eq(curclicked).stop().trigger('autoplay');
			curclicked++;
			if( 3 == curclicked )
				curclicked = 0;		
		}, 5000);
	};
	$("#page-wrap").hover(
		function(){
			clearInterval(theInt);
		},
		function() {
			theInterval(curclicked);
		}
	);*/
	
	/*$(".info-col").click(function() {
		var newSlide = $("#page-wrap > div").index(this);
		theInterval(newSlide);
	});*/
	
	$(".info-col dl").click(function() {
		var location = $(this).parent().find(".image").attr("href");
		window.location = location;
	});
	
	$(".info-col").hover(
		function() {
			$(this).find(".slideTitle").stop().trigger('autoplay');
		},
		function() {		
			/*$(this).find("div.slideTitle h2").stop().animate({fontSize: "30px"});
			$(this).find(".slideTitle h4").stop().animate({fontSize: "13px"});
			$(this).find("div.slideTitle").stop().removeClass("current");
			$("dd").slideUp(); */
		}
	);
	$("#page-wrap").hover(function() { },
	function() {
		$("div.slideTitle h2").stop().animate({fontSize: "42px"});
		$("div.slideTitle p.subtitle").stop().animate({fontSize: "18px"});
		$("dd").slideUp();
		$("#sliderWrap .info-col").stop().animate({width: "320px"});
		$("#sliderWrap .info-col").removeClass("curCol");
		$("#sliderWrap .info-col .slideTitle").removeClass("current");
		//$("div.slideTitle").stop().removeClass("current"); */
	});
});
