$(document).ready(function(){

	/**
	* Homepage Slideshows and Hover
	*/
	
	// Directory
	$('#directoryWrap').hover(function(){
		$('#directoryBlack').stop(true, true).fadeTo(300, 0.5);
		$('#directoryText').fadeIn(300);
	}, function(){
		$('#directoryBlack, #directoryText').stop(true, true).fadeOut(300);
	});
	
	$('#directoryWrap').click(function(){
		window.location = 'http://themalibulumberyard.com/directory';
	});
	
	
	// Events
	$('#eventsWrap').hover(function(){
		$('#eventsBlack').stop(true, true).fadeTo(300, 0.5);
		$('#eventsText').fadeIn(300);
	}, function(){
		$('#eventsBlack, #eventsText').stop(true, true).fadeOut(300);
	});
	
	$('#eventsWrap').click(function(){
		window.location = 'http://themalibulumberyard.com/press';
	});
	
	
	// Blog
	$('#blogWrap').hover(function(){
		$('#blogBlack').stop(true, true).fadeTo(300, 0.5);
		$('#blogText').fadeIn(300);
	}, function(){
		$('#blogBlack, #blogText').stop(true, true).fadeOut(300);
	});
	
	$('#blogWrap').click(function(){
		window.location = 'http://themalibulumberyard.com/blog';
	});
	
	// Press
	$('#pressWrap').hover(function(){
		$('#pressBlack').stop(true, true).fadeTo(300, 0.5);
		$('#pressText').fadeIn(300);
	}, function(){
		$('#pressBlack, #pressText').stop(true, true).fadeOut(300);
	});
	
	$('#pressWrap').click(function(){
		window.location = 'http://themalibulumberyard.com/info';
	});
	
	// Info
	$('#infoWrap').hover(function(){
		$('#infoBlack').stop(true, true).fadeTo(300, 0.5);
		$('#infoText').fadeIn(300);
	}, function(){
		$('#infoBlack, #infoText').stop(true, true).fadeOut(300);
	});
	
	$('#infoWrap').click(function(){
		window.location = 'http://themalibulumberyard.com/events';
	});


	/**
	* Directory Listing Page
	*/

	$('.singleShop').hover(function(){
		$('.singleBlack', this).stop(true, true).fadeTo(300, 0.8);
		$('.singleText', this).stop(true, true).fadeIn();
	}, function(){
		$('.singleText', this).stop(true, true).fadeOut();
		$('.singleBlack', this).stop(true, true).fadeOut(300);
	})

	$('.singleShop').click(function(){
		window.location = $(this).attr('data-link');
	})


	/**
	* Directory Single Page Gallery
	*/

	$('.mainTopImage:first').show();

	$('.mainBottomImage').click(function(){
		var image = $(this).attr('rel');
		$('.mainTopImage').hide();
		$('#'+image).show();
	});

	/**
	* Masthead: About & Contact
	*/

	/*
	$('#mast2About, #mast2Contact').hover(function(){
		$('.mast2Black', this).stop(true, true).fadeTo(300, 0.8);
		$('.mast2Text', this).stop(true, true).fadeIn(300);
	}, function(){
		$('.mast2Black', this).stop(true, true).fadeOut(300);
		$('.mast2Text', this).stop(true, true).fadeOut(300);
	});

	$('#mast2About, #mast2Contact').click(function(){
		window.location = $('.mast2Text a', this).attr('href');
	});
	*/

	/**
	* Contact Page Store Hours
	*/

	$('.storeButton').click(function(){
		var hours = $(this).attr('rel');
		$('.'+hours).toggle();
	});

	
 });
