$(document).ready(function() {
	$('.lightbox').lightbox({
		fileLoadingImage: '/img/lightbox/loading.gif',
		fileBottomNavCloseImage: '/img/lightbox/closelabel.gif'
	});
	
	$(function() {$('#hp_adverts')
	.before("<div id='slide-nav'>") 
	.cycle({ 
	    fx:     'fade', 
	    speed:  1500, 
	    timeout: 5000, 
	    pager:  '#slide-nav',
	 	pause:   1
	});});
	//$("#prod_sidebar p:first").addClass("first");
	$("#homepage_fireplaces h4:first").addClass("first");
	
	$(document).ready(function() {
	    // to store it in a variable
		var loc = window.location.pathname;
		$("#nav a[href='" + loc + "']").addClass("here");
	
	});
	
	$("#product_details a").click(function() {
		return false;
	});
	oldLink = $("img#mainimage").attr("src");

		$("#product_details a").hover(function() {

			var newLink = $(this).attr("href");

			$("img#mainimage").attr("src", newLink);}, function() {$("img#mainimage").attr("src", oldLink);

		});
			

});
