// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(window).load(function (){

	//$('body').hide();
	//$('body').fadeIn(1000);    
	
	//Gallery
	
	$("#gallery").after('<div id="gallery-caption"><a id="prev" href="#"><</a><a id="next" href="#">></a><p class="title"></p><p class="caption"></p></div>');
	
	$("p.title").text($("#gallery img:visible").attr("title"));
	$("p.caption").text($("#gallery img:visible").attr("alt"));
	

	// Next controls
	$("#next").click(function(){
		if($("#gallery img:last").is(":visible")){
			$("#gallery img:visible").fadeOut(function(){
				$("#gallery img:first").fadeIn();
				$("p.title").text($("#gallery img:visible").attr("title"));	
				$("p.caption").text($("#gallery img:visible").attr("alt"));
			});
		}
		else{
			$("#gallery img:visible").fadeOut(function(){
				$(this).next().fadeIn();
				$("p.title").text($("#gallery img:visible").attr("title"));
				$("p.caption").text($("#gallery img:visible").attr("alt"));
				
			});
		}
		return false;
	});
	
	// Previous controls
	$("#prev").click(function(){
		if($("#gallery img:first").is(":visible")){
			$("#gallery img:visible").fadeOut(function(){
				$("#gallery img:last").fadeIn();
				$("p.title").text($("#gallery img:visible").attr("title"));
				$("p.caption").text($("#gallery img:visible").attr("alt"));

			});
		}
		else{
			$("#gallery img:visible").fadeOut(function(){
				$(this).prev().fadeIn();
				$("p.title").text($("#gallery img:visible").attr("title"));
				$("p.caption").text($("#gallery img:visible").attr("alt"));
			});
		}
		return false;
	});
                                                    


});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
