$(document).ready(function(){

	var currentUrl = window.location.href;
	var currentUrlArray = new Array();
	currentUrlArray = currentUrl.split('/');
	var currentPage = currentUrlArray[3];
	currentPage2 = currentPage.split('?');
	var currentPageX = currentPage2[0];
	
	//alert('This alert is from: jquery_functions.js');	
	$("#rightSidebar h3").click(function(){
		$(this).addClass("acc_open").siblings().removeClass("acc_open");							 
		var target = $(this).next('div.info')
		$("div.info:visible").not(target).slideUp()
		target.slideToggle()
	});
	
	if ((currentPage == 'index.php') || (currentPage == '')) {
		$("#rightSidebar h3").eq(0).addClass("acc_open")
		$("div.info").eq(0).slideDown();
	}
	
	/*
	$("h4.productsNav").click(function(){		   
		var target = $(this).next('div.acc')
		$("div.acc:visible").not(target).slideUp();
		target.slideToggle();
	});
	*/
	
	$("h4.productsNav").toggle(function(){
	  $("div.acc").slideDown();
	  $("#rightSidebar h3").eq(0).removeClass("acc_open");
	  $('div.info').slideUp();
	},function(){
	  $("div.acc").slideUp();
	});
	
	
	$("div#slider").codaSlider();
	
	$("#mainNav ul li").hover(function(){
		  $(this).addClass("hovers");
		},function(){
		  $(this).removeClass("hovers");
	});
	
	$('table#subproducts tbody tr:odd').addClass('odd');
  	$('table#subproducts tbody tr:even').addClass('even');
	
	
	$('table.grid tbody tr:odd').addClass('odd');
  	$('table.grid tbody tr:even').addClass('even');
	
	$(".nav").superfish({
		animation : { opacity:"show", height:"show" }
	});
	
	
	
	
	if ((currentPage == 'product-overview.php') || (currentPage == 'district-heating.php') || (currentPage == 'our-brands.php') || (currentPageX == 'products.php')) {
		//if (currentPage != 'products.php?id=8') {
			$("div.acc").show();	
			$("div.acc2").show();
		//} else {
			//$("div.acc").eq(1).slideDown();	
		}
	//}
	
	$('#rightSidebar ul li a').eq(0).prepend('<img style="float:right; margin:0; padding:0" src="http://www.hevac.ie/assets/templates/hevac/images/icons/local_rep.gif" alt="" />');
	$('#rightSidebar ul li a').eq(1).prepend('<img style="float:right; margin:0; padding:0" src="http://www.hevac.ie/assets/templates/hevac/images/icons/quote.gif" alt="" />');
	$('#rightSidebar ul li a').eq(2).prepend('<img style="float:right; margin:0; padding:0" src="http://www.hevac.ie/assets/templates/hevac/images/icons/tools.gif" alt="" />');
	
	$('#productsMenu ul li a').eq(0).prepend('<img style="float:right;" src="http://www.hevac.ie/assets/templates/hevac/images/icons/domestic.gif" alt="" />');
	$('#productsMenu ul li:contains(Special Offers) a').not($('#productsMenu ul li.active ul li a')).not($('#productsMenu ul li:eq(0) a')).prepend('<img style="float:right" src="http://www.hevac.ie/assets/templates/hevac/images/icons/special_offers.gif" alt="" />');
	$('#productsMenu ul li:contains(Price List) a').not($('#productsMenu ul li.active ul li a')).not($('#productsMenu ul li:eq(0) a')).prepend('<img style="float:right" src="http://www.hevac.ie/assets/templates/hevac/images/icons/price_list.gif" alt="" />');
	
	$(function() {
        $('#content a.lightbox').lightBox({fixedNavigation:false});
    });
	
	$('#gallery').cycle({ 
		fx:     'fade', 
		speed:   300, 
		timeout: 5000
	});
	$('#slideshow').cycle();
	$('#bannerGallery').cycle();
	
	var content_height = $('#content').height();
	if ( content_height < 430 ) { 
		$('#content').height(430);
	}
	
	//-------- PDF icon for product links
	$('table.prodTable a[href$=pdf]').addClass('pdf');
	
}); //Close document.ready
