$(document).ready(function() {
	$(function(){
		$(".icons a").each(function(){
			$(this).hover(
				function(){
					$(".icons span").html($(this).find("img").attr("alt"));
					if ($(this).attr("class")=="zoom") {
						$("#image img:first").attr("src",$("#image img:first").attr("src").replace("max","detail"));
					}
				},
				function(){
					$(".icons span").html("");
					if ($(this).attr("class")=="zoom") {
						$("#image img:first").attr("src",$("#image img:first").attr("src").replace("detail","max"));
					}
				}
			);
		});
		
		var content = $("#product"),
			thumbs = content.find("#content #thumbs a");

		thumbs.hover(
			function()
			{
				var thumb = $(this),
					newTitle = thumb.text(),
					newSrc = thumb.find("img").attr("src").replace("mid","max")
					h2 = content.find("h2");
					
				//change title
				h2.text(newTitle);
			
				//change lifestyle image
				content.find("#image.lifestyle img:eq(0)").attr("src",newSrc);

				//change main image
				content.find("#image.lifestyle img:eq(1)").attr("src",newSrc.replace("max","lifestyle1"));
			}
		)
	});
});
