/* Site specific JS */

$(document).ready(function()
{	
	
	// Open external links in a new window
	//$("a[href^='http:']").not("[href*='mydomain.com']").attr('target','_blank');

	
	 
	
	// Scroll to top
	$('#toTop').click(function()
	 {
	 	$.scrollTo($('#header'), 500);
	 });
	 
	$('#toTop2').click(function()
	 {
	 	$.scrollTo($('#header2'), 500);
	 });
	 
	 // Lightbox
	$('#gallery a').lightBox();
	
	
}); // End document.ready




$(window).load(function() {
	
	// Fire up the slider
	if ($('#slider').length != 0) 
	{
		$('#slider').nivoSlider({
			effect:'random',
			slices:12,
			animSpeed:500,
			pauseTime:5000,
			directionNav:true, //Next & Prev
			directionNavHide:true, //Only show on hover
			controlNav:true, //1,2,3...
			pauseOnHover:true, //Stop animation while hovering
			beforeChange: function(){},
			afterChange: function(){}
		});
	}
	
});





