            $(document).ready(function(){
		$('.slideshow').css({"visibility":"visible"});
                $('.slideshow').cycle({
                    fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
                });			
});  

  $(document).ready(function(){
    
    $(".clickable").click(function () {
		$this = $(this).attr('id');
		if ($this == "about"){ 
      		$("div[rel]").overlay({expose: '#000', effect: 'apple'});}
		else if ($this == 'contact'){
			$("div[rel]").overlay({expose: '#000', effect: 'apple'});}
		else if ($this == 'testimonials')
			$("div[rel]").overlay({expose: '#000', effect: 'apple'});
		else if ($this == 'gallery')
		{
			window.location = "gallery/gallery.php";
	        return false;
	    }
		else if ($this == 'links')
		{
			//$("#links").css("background: red");
			$("div[rel]").overlay({expose: '#000', effect: 'apple'});
	    }
		else
		{
		 $("#petrol").overlay({expose: '#000', effect: 'apple'});	
		}
	});
  });
