// Shamrock Global JS
$(document).ready(function(){
	
	//-------------------------------		
	// FRONT MAP PNG STYLING FOR IE5/IE6
	//If IE5 or 6
	if ($.browser.msie && /MSIE\s(5\.5|6\.)/.test(navigator.userAgent)) {
		// IE5/6 PNG Fix
		$.ifixpng('media/img/spacer.gif');
		$('img, #map-limerick a, #map-cork a, #map-waterford a, #map-tipperary a, #map-kilkenny a, #map-wexford a, #map-donegal a, #map-sligo a, #map-mayo a, #map-roscommon a, #map-galway a, #map-clare a, #map-offaly a, #map-wicklow a, #map-cavan a, #map-kerry a').ifixpng();
		
		// hide/show counties with bg png image
		$("#map-limerick a, #map-cork a, #map-waterford a, #map-tipperary a, #map-kilkenny a, #map-wexford a, #map-donegal a, #map-sligo a, #map-mayo a, #map-roscommon a, #map-galway a, #map-clare a, #map-offaly a, #map-wicklow a, #map-cavan a, #map-kerry a").hide();
		
		$("#map-limerick, #map-cork, #map-waterford, #map-tipperary, #map-kilkenny, #map-wexford, #map-donegal, #map-sligo, #map-mayo, #map-roscommon, #map-galway, #map-clare, #map-offaly, #map-wicklow, #map-cavan, #map-kerry").hover(
		  function () {
			$(this).children('a').show();
			$(this).children('a').css("cursor: pointer");
		  }, 
		  function () {
			$(this).children('a').hide();
		  }
		);
		
	}	

});
