// JavaScript Document


jQuery(document).ready(function() {
	
	$('.navigator').slideDown();
	
	$.localScroll();
	
$('.navigation a').click(function(){
							   
var $shownews = $(this).attr("id")					   


$('.bigimage').hide();

$('.p'+$shownews).fadeIn();

return false;

	});







$('.navi').cycle({ 
    fx:     'fade', 
    speed:  1000, 
    timeout: 0, 
    next:   '#next', 
    prev:   '#prev'

	});

$('.anotherslider').cycle({ 
    fx:     'fade', 
    speed:  910, 
    timeout: 7000,
autostop: 1

	});


$(".fancy a").fancybox({
'zoomOpacity': true,
'overlayShow': false,
'zoomSpeedIn': 500,
'zoomSpeedOut': 500


});




$(".wheretolocateus").click(function(){
							 
							 $(".hide").slideToggle(600);
							 return false;
							 });

	
	
	

});








