/* Author: Monkemedia.co.uk

*/


/*******************************************************
* Product list page image filter
*******************************************************/

$(function(){
	 // set opacity to full on page load
	 $(".productListContainer ul.productList li").css("opacity", "1");

		 // on mouse over
		 $(".productListContainer ul.productList li").hover(function(){
	 // animate opacity to 0.25
	 $(".productListContainer ul.productList li").not(this).stop().animate({
	 opacity: 0.25
	 }, "slow");
	 },
	 // on mouse out
	 function(){
	 // animate opacity to full
	 $(".productListContainer ul.productList li").not(this).stop().animate({
	 opacity: 1
	 }, "slow");
  });
});


 
function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(51.616791, -4.158754), 13);
        map.setUIToDefault();
		var marker = new GMarker(new GLatLng(51.616791, -4.158754));
map.addOverlay(marker);

      }
    }

/*******************************************************
* Tool Tip
*******************************************************/

$(function(){
	$(".toolTip").tipTip({maxWidth: "auto", edgeOffset: 10});
});

/*******************************************************
* Image Loader
*******************************************************/

jQuery(document).ready(function() { //hides image and shows background loading image
    jQuery("#imageLoader img").css("display", "none");
});
jQuery(window).load(function() { //fades in image and hides loading image
    jQuery("#imageloader img").fadeIn("fast");
});



























