$(document).ready(function(){ 
	$('#Loading').hide();
	$('#response').hide();
	
	$("ul.sf-menu").superfish({
		delay:			100,
		animation:		{opacity:'show',height:'show'},
		speed:			'fast',
		autoArrows:		false,
		dropShadows:	false
	}); 

	$('#se_image').cycle({
		fx: 		'fade',
		timeout: 	3000
	});
	
	$('#testimonialBoxImage').cycle({
		fx: 		'fade',
		timeout: 	3000
	});
	
	$('#promotionalBoxImage').cycle({
		fx: 		'fade',
		timeout: 	6000
	});

	jQuery.each(jQuery.browser, function(i) {
		if($.browser.msie)
		{
			$("#accordion").accordion({ 
				header: "h3",
				active: 0 
			});	
		}
		else
		{
			$("#accordion").accordion({ 
				header: "h3",
				autoHeight: false,
				active: 0 
			});	
		}
	});
	
	$.fn.colorbox.settings.bgOpacity = "0.5";
	$(".cpModal").colorbox();
});

function categoryImages( value )
{
	location.href = 'library.php?id=' + value;
}

function imageSearch()
{
	location.href = 'library.php?search=' + document.getElementById('imageSearch').value;
}

function products( value )
{
	location.href = 'products.php?id=' + value;
}

function newsletterSignup()
{
	$.ajax({
		type:		"POST",
		url:		"library/epm_api.php",
		data:		"email=" + document.getElementById('newsletterEmail').value,
		dataType:	"json",
		beforeSend:	function()
		{
			$('#Loading').show();
			$('#newsletterForm').hide();
		},
		success:	function(data) 
		{
			document.getElementById('response').innerHTML = data.msg;
			$('#Loading').hide();
			$('#response').show();
		}
	});
}

function tryAgain()
{
	$('#response').hide();
	$('#newsletterForm').show();
}