jQuery(document).ready(function($) {
	var target = '.bigLink';
	var hoverClass = 'hoverBigLink';
		$(target).each(function() {
			$(this).hover(
				function() {
					$(this).addClass(hoverClass);
					status=$(this).find('a').attr('href');
				},
				function() {
					$(this).removeClass(hoverClass);
					status='';
					}
			);
			$(this).click(
				function() {
					location = $(this).find('a').attr('href');
			});
			$(this).css('cursor','pointer');	
		});
});

jQuery(document).ready(function($) {
	var target = '.bigLink2';
	var hoverClass = 'hoverBigLink2';
		$(target).each(function() {
			$(this).hover(
				function() {
					$(this).addClass(hoverClass);
					status=$(this).find('a').attr('href');
				},
				function() {
					$(this).removeClass(hoverClass);
					status='';
					}
			);
			$(this).click(
				function() {
					location = $(this).find('a').attr('href');
			});
			$(this).css('cursor','pointer');	
		});
});

jQuery(document).ready(function($) {

	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});

});

jQuery(document).ready(function($) {
	
	$("#sliderPhotos").cycle({
	 fx: "scrollRight",
	 timeout: 0, 
    speed:   500, 
    startingSlide: 2
	});


	$('#bul').css('cursor','pointer').click(function() { 
    $('#sliderPhotos').cycle(0); 
    return false; 
	}); 
 
	$('#burg').css('cursor','pointer').click(function() {  
    $('#sliderPhotos').cycle(1);  
    return false;  
	}); 

	$('#pork').css('cursor','pointer').click(function() {  
    $('#sliderPhotos').cycle(2);  
    return false;  
	}); 


});

jQuery(document).ready(function($) {
	var target = '.sliderlink';
	var hoverClass = 'sliderhover';
		$(target).each(function() {
			$(this).hover(
				function() {
					$(this).addClass(hoverClass);
				},
				function() {
					$(this).removeClass(hoverClass);
				}		
			);
		});
		
		$(target).each(function() {
			$(this).click(
				function() {
					$(this).addClass(hoverClass);
				}
			);
		});
		
		
});




jQuery(document).ready(function($) {
	var target = '.country';
	var hoverClass = 'countryhover'
		$(target).each(function() {
			$(this).hover(
				function() {
					$(this).addClass(hoverClass);
					status=$(this).find('a').attr('href');
					
						
				},
				function() {
					$(this).removeClass(hoverClass);
					status='';
					}
			);
			$(this).click(
				function() {
					location = $(this).find('a').attr('href');
			});
			$(this).css('cursor','pointer');

		});
});


jQuery(document).ready(function($) {
	var target = '.story';
		$(target).each(function() {
			
			$(this).click(
				function() {
					location = $(this).find('a').attr('href');
			});
			$(this).css('cursor','pointer');	
		});
});


