$(document).ready(function() {
						   
	//Photo Gallery
	$('#photoGalleryBG, #photoGallery, #closeGallery').hide();
	$('#photoGalleryBG').delay(500).fadeTo(500, 0.8);
	$('#photoGallery, #closeGallery').delay(500).fadeTo(500, 1);
	$('#closeGallery').click(function() {
		$('#photoGalleryBG, #photoGallery, #closeGallery').hide();	
	});
	$('.blank').css({opacity: .2});

	//Drop down navigation

	$('#navPortfolio').toggle(function () {
	    $('#nav2ndLevel').filter(':not(:animated)').slideDown(200);
	    $(this).removeClass('navExpand').addClass('navMinimise');
	},
    function () {
        $('#nav2ndLevel').slideUp(200);
        $(this).removeClass('navMinimise').addClass('navExpand');
		$('.nav3rdLevel').hide(0);
    }
	);
    $('#nav2ndLevel li').toggle(function () {
        $('.nav3rdLevel').hide(0);
        $(this).children('.nav3rdLevel').filter(':not(:animated)').fadeIn(200);
	},
    function () {
        $('.nav3rdLevel').fadeOut(200);
    }
	);
//	$('#container').click(function(){
//		$('#navPortfolio').trigger('click');
//	});

	//Page linkage
	
	$('#loy').click(function(){
		window.location = "loy.html";
	});		
	$('#strike').click(function(){
		window.location = "strike.html";
	});		
	$('#wedding').click(function(){
		window.location = "wedding.html";
	});		
	$('#fashion').click(function(){
		window.location = "fashion.html";
	});		
	$('#portrait').click(function(){
		window.location = "portrait.html";
	});		
	$('#scapes').click(function(){
		window.location = "scapes.html";
	});		
	$('#street').click(function(){
		window.location = "street.html";
	});		
	$('#ySociety').click(function(){
		window.location = "ysociety.html";
	});		
	$('#architecture').click(function(){
		window.location = "archi.html";
	});		

	//jquery scrollbar
	
	$('#aboutMe #content').jScrollPane();

});


