$(function(){
	$('#about').hide();
	$('#bio-french').hide();
	$('#bio-english').hide();
	$('#contact').hide();
	$('#contact-french').hide();
	$('#contact-english').hide();
	$('#portfolios-menu').hide();
	//---------------------------------
	//display correct bio (language)
	$("#bio-select-english").click(function () {
		if($('#bio-french').is(":visible"))
				$('#bio-french').fadeOut("slow").hide("slow");
		if(!$('#bio-english').is(":visible"))
				$('#bio-english').fadeIn("slow").show("slow");
				
	});
	$("#bio-select-french").click(function () {
		if($('#bio-english').is(":visible"))
				$('#bio-english').fadeOut("slow").hide("slow");
		if(!$('#bio-french').is(":visible"))
				$('#bio-french').fadeIn("slow").show("slow");
				
	});
	//---------------------------------
	
	//---------------------------------
	//display correct contact info (language)
	$("#contact-select-english").click(function () {
		if($('#contact-french').is(":visible"))
				$('#contact-french').fadeOut("slow").hide("slow");
		if(!$('#contact-english').is(":visible"))
				$('#contact-english').fadeIn("slow").show("slow");
				
	});
	$("#contact-select-french").click(function () {
		if($('#contact-english').is(":visible"))
				$('#contact-english').fadeOut("slow").hide("slow");
		if(!$('#contact-french').is(":visible"))
				$('#contact-french').fadeIn("slow").show("slow");
				
	});
	//---------------------------------
	
	//---------------------------------
	//display about info when clicked
	$("#menu-about").click(function () {
		if($('#about').is(":visible")){
			$('#about').fadeOut("slow").hide("slow");	
		}
		else{
			if($('#contact').is(":visible"))
				$('#contact').fadeOut("slow").hide("slow");
			$('#about').fadeIn("slow").show("slow");
				
		}
	});
	//---------------------------------
	
	//---------------------------------
	//goto blog when blog clicke
	$("#menu-blog").click(function () {
		window.location = "http://www.dkyeah.com/blog";
		
	});
	//---------------------------------
		
	//---------------------------------
	//display contact info when clicked
	$("#menu-contact").click(function () {
		if($('#contact').is(":visible")){
			$('#contact').fadeOut("slow").hide("slow");	
		}
		else{
			if($('#about').is(":visible"))
				$('#about').fadeOut("slow").hide("slow");
			$('#contact').fadeIn("slow").show("slow");
		}
	});
	//---------------------------------
	
	//------------------------------------
	//display portfolio menu when clicked
	$("#menu-portfolio").click(function () {
		if(!menu_portfolio){
			$("#portfolios-menu").fadeIn("slow").show("slow");
			menu_portfolio = 1;
		}
		else{
			$("#portfolios-menu").fadeOut("slow").hide("slow");
			menu_portfolio = 0;
		}	 
	});
	//------------------------------------
	
	//----------------------------------------------------
	// changes picture when mouse hovers a portofolio menu
	var current_picture = "";
	$("#portfolio-menu-lifestyle").hover(function(){
		if(current_picture != "lifestyle"){
			wait_img_loaded("pictures/lifestyle/lifestyle-1.jpg");
			current_picture="lifestyle";
			picture=1;
		}
	});	
	
	$("#portfolio-menu-places").hover(function(){
		if(current_picture != "places"){
			wait_img_loaded("pictures/places/places-1.jpg");	
			current_picture="places";
			picture=1;
		}
	});
	
	$("#portfolio-menu-nature").hover(function(){
		if(current_picture != "nature"){
			wait_img_loaded("pictures/nature/nature-1.jpg");
			current_picture="nature";
			picture=1;
		}
	});
	
	$("#portfolio-menu-sport").hover(function(){
		if(current_picture != "sport"){
			wait_img_loaded("pictures/sport/sport-1.jpg");
			current_picture="sport";
			picture=1;
		}
	});
	//----------------------------------------------------
})

