$(document).ready(
	function(){
		
		$('ul#wwdGallery').innerfade({
			animationtype: 'fade',
			speed: 4000,
			timeout: 7000,
			type: 'random_start',
			containerheight: '190px'
		});
	
		// main pop-up to be hidden to begin with
		$('div#popup').removeClass('hidden').hide();
		
		// set-up the close pop-up link
		$('div#popup #closepop').bind('click', function() {
			$('div#popup').fadeOut();
			return false;
		});
		
		// set-up each click link
		$('#ontheday').bind('click', function() {
			$('div#popup').hide().load('popups/on-the-day-coordination.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#suppliers').bind('click', function() {
			$('div#popup').hide().load('popups/supplier-sourcing.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#venue').bind('click', function() {
			$('div#popup').hide().load('popups/venue-sourcing.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#mother').bind('click', function() {
			$('div#popup').hide().load('popups/mother-of-the-bride.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#fullfabday').bind('click', function() {
			$('div#popup').hide().load('popups/full-fab-day.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#marquee').bind('click', function() {
			$('div#popup').hide().load('popups/marquee.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#guru').bind('click', function() {
			$('div#popup').hide().load('popups/guru.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
		$('#rescue').bind('click', function() {
			$('div#popup').hide().load('popups/rescue.html', function () {
				$(this).fadeIn();
			});
			return false;
		});
	
});


function closePop() {
	$('div#popup').fadeOut();
}
