$(function() 
{
	jQuery('#hero').jcarousel(
	{ 
		scroll: 1, 
		visible: 1, 
		auto: 12, 
		wrap: 'circular', 
		animation: 1200
	});
	
	//Open in new window
	$('a[href$=".zip"],a[href$=".pdf"],a[href$=".doc"],a[href$=".docx"],a[href$=".xls"],.open_external').live("click", function()
	{
		window.open( $(this).attr("href") );
		return false;
	});	
	
	//#product-image-large, #product-image-medium, product-image-gallery li a
	$(".content-area .fb").fancybox();
	
	if ($("#map").length)
	{
		var latlng = new google.maps.LatLng(54.937727,-1.515057);
		var myOptions = 
		{
			zoom: 15,
			center: latlng,
			mapTypeControl : false,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		var map = new google.maps.Map(document.getElementById("map"), myOptions);
		var marker = new google.maps.Marker(
		{
			map : map,
			position : latlng
		});		
	};
	
});

Cufon.set('fontFamily', 'TMB');
Cufon.replace("#header ul li a, #header form label", { hover : true } );
