$(document).ready(function(){
	if($("#gallery_home .gallery").length) {
	$(".gallery").cycle({
		fx: "fade",
		timeout: 5000,
		speed: 2500
	}).mouseenter(function(){
		// $(this).cycle("pause");
		$(".gallery").not(this).stop().fadeTo(800, 0.2);
		var index = $(this).index(".gallery");
		$("#gallery_nav li:eq(" + index + ") a").addClass("active");
	}).mouseleave(function() {
		// $(this).cycle("resume");
		var index = $(this).index(".gallery");
		$("#gallery_nav li:eq(" + index + ") a").removeClass("active");
		$(".gallery").stop().fadeTo(500, 1);
		
	}).click(function() {
		var index = $(this).index(".gallery");
		window.location = $("#gallery_nav li:eq(" + index + ") a")[0].href;
	});
	
	$("#gallery_nav a").hover(function() {
		var index = $(this).parents("li").index();
		$(".gallery:eq(" + index + ")").trigger("mouseenter");
		
	}, function() {
		$(".gallery").trigger("mouseleave");
	});
}

	if($("#gallery .gallery").length) {
		$(".gallery").cycle({
			timeout: 0,
			next: ".next",
			prev: ".prev",
			slideExpr: '.item'
		});
	}
	
	$("img").mouseover(function() {
		$(this).attr("title", "");
	})
	
 });
