$(document).ready(function() { 
	if (document.getElementById('kf-home-logo') != undefined) {
		var d = $('<div id="kf-splash"><img src="pictures/kf-home-logo.jpg" /></div>');
		$('body').prepend(d);$('#kf-splash').fadeTo(3000,0, function() {$('#kf-splash').remove()});
	}

	if (document.getElementById('kf-webdesign-content') != undefined) {
		$('#kf-webdesign-content > ul > li > img').mouseover(function() {$(this).fadeTo(300,1)});	
		$('#kf-webdesign-content > ul > li > img').mouseout(function() {$(this).fadeTo(300,0.7)});
		$('#kf-webdesign-content > ul > li > img').fadeTo(1,0.7);	
	}		
	$('#gallery').galleria({autoplay : true, transition : 'fade'});
});

function changeTheme(obj) {
	if (obj.selectedIndex != 0)
		window.location = 'photo/'+obj.options[obj.selectedIndex].value+'/#selectBox';
	else
		window.location = 'photo/#selectBox';
}

function sendMail() {
	$('#kf-form-sendmsg').attr('disabled','true');
	$('#kf-form-sendmsg').attr('value','Envoi en cours...');
	$('#result').append('<img src="pictures/loading.gif">');
	$.post('send.php', $("#kf-form").serialize(), function(data) {
		if (data == '0') {
			alert('Un des 3 champs n\'est pas rempli !');
			$('#kf-form-sendmsg').removeAttr('disabled');
			$('#kf-form-sendmsg').attr('value','Envoyer le message');			
			$("#result img").remove();
		} else
  			$('#result').html(data);
});

}
