$(function(){
	$("#categories_in_line_content .categories").hover(
			function(){
				$(".flash_background", this).animate({
					opacity : 1
				}, "fast", "swing", function(){
					$(this.parentNode).addClass("categoryHover");
				});
			},
			function() {
				$(".flash_background", this).animate({
					opacity : 0
				}, "fast", "linear", function(){
					$(this.parentNode).removeClass("categoryHover");
				});

			}
		);

	var urlString = location.href;
	$(".flash_content a").each(
		function(){
			if($(this).attr("href").indexOf(urlString)!==-1){
				$(this.parentNode).addClass("categorySelected");
			}
		}
	);
	
	$("#pre").mouseover(function(){
		$("#pre").css("background" , "url(templates/city-vision/images/pre_hover.png)");
	});
	$("#pre").mouseout(function(){
		$("#pre").css("background" , "url(templates/city-vision/images/pre.png)");
	});
	
		$("#next").mouseover(function(){
		$("#next").css("background" , "url(templates/city-vision/images/next_hover.png)");
	});
	$("#next").mouseout(function(){
		$("#next").css("background" , "url(templates/city-vision/images/next.png)");
	});
	
	$(".product_flash_link").click(function(){
				var link = $(this).attr("id");
				void window.open('flash_show.php?product_id='+ link +'', '_blank', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=400,directories=no,location=no,screenX=100,screenY=100');
				return false;
			});
	$(".product_show").mouseover(function(){
		$("#product_title", this).css("background", "url(templates/city-vision/images/product_title_bac_hover.png)");
		$("#product_content", this).css("border-left", "1px solid #868686");
		$("#product_content", this).css("border-right", "1px solid #868686");
		$("#product_bottom", this).css("background", "url(templates/city-vision/images/product_bottom_hover.png)");
	});
	$(".product_show").mouseout(function(){
		$("#product_title", this).css("background", "url(templates/city-vision/images/product_title_bac.png)");
		$("#product_content", this).css("border-left", "1px solid #EBEBEB");
		$("#product_content", this).css("border-right", "1px solid #EBEBEB");
		$("#product_bottom", this).css("background", "url(templates/city-vision/images/product_bottom.png)");
	});
	
});