// JavaScript Document

// Make sure the document is ready
$(document).ready(function() {
	
	/**
	* Adds the IE6 warning to the document
	*/
	if (navigator.userAgent.toLowerCase().indexOf('msie 6') != -1) {
		
		$("body").prepend("<div id=\"ie6-warning\"></div>");
		$("#ie6-warning").load("/templates/default/templates/custom/ie6.php");
		
	}
	
	
	
	/**
	* Fancybox image plugin
	*/
	$("a.enlarge_image").fancybox({
		'overlayOpacity' 	: 0.5,
		'overlayColor' 		: '#6f6959',
		'padding' 			: 0,
		'speedIn'			: 600, 
		'speedOut'			: 200, 
		'titleShow' 		: false
	});
	
	/* Using custom settings */
	
	$("a.inline").fancybox({
		'hideOnContentClick': true
	});

	$("a.group").fancybox({
		'overlayOpacity' 	: 0.5,
		'overlayColor' 		: '#6f6959',
		'padding' 			: 0,
		'speedIn'			: 600, 
		'speedOut'			: 200, 
		'titleShow' 		: false
	});
	
	
	
	/**
	* Work image replacement
	*/
	$(".image-list li a").live("click", function(event) {
		
		event.preventDefault();
		
		// Get the image source
		var img_src = $(this).attr("href");
		
		// Replace the main image with the selected image
		$("#main-image").attr("src", img_src);
		
	});
	
});
