$(document).ready(function() {
	$("a.fancybox").fancybox();

	$(".show_photo").hover(function() {
		var product_id = $(this).attr('id').replace('sp_', '');

		if ($(this).attr('href') == '#') {
			$('#show_photo').html('');
		} else {
			$('#show_photo').html('<img src="' + $(this).attr('href') + '" alt="" />');
		}

		$('.show_photo_menu').removeClass('active');
		$('#sp_menu_' + product_id).addClass('active');

		return false;
	});

	$(".show_photo_menu").hover(function() {
		var product_id = $(this).attr('id').replace('sp_menu_', '');

		if ($('#sp_' + product_id).attr('href') == '#') {
			$('#show_photo').html('');
		} else {
			$('#show_photo').html('<img src="' + $('#sp_' + product_id).attr('href') + '" alt="" />');
		}

		$('.show_photo_menu').removeClass('active');
		$(this).addClass('active');

		return false;
	});

	$(".pr_image").hover(function() {
		var product_id = $(this).attr('id').replace('pr_img_', '');

		if ($('#sp_' + product_id).attr('href') == '#') {
			$('#show_photo').html('');
		} else {
			$('#show_photo').html('<img src="' + $('#sp_' + product_id).attr('href') + '" alt="" />');
		}

		$('.show_photo_menu').removeClass('active');
		$('#sp_menu_' + product_id).addClass('active');

		return false;
	});
});


