$(document).ready(function(){
	
    	$('#mycarousel').jcarousel({
    		wrap: 'circular'
	    });
	    
		
//LOAD HOME IMAGE
/*
var images = new Array()
function preload() {
	for (i = 0; i < preload.arguments.length; i++) {
		images[i] = new Image();
		images[i].src = preload.arguments[i];
	}
}
preload(
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img25.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img01.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img02.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img03.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img04.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img05.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img06.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img07.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img08.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img09.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img10.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img11.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img12.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img13.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img14.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img15.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img16.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img17.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img18.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img19.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img20.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img21.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img22.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img23.jpg",
	"http://etat-desprit.vipdev.fr/wp-content/uploads/2011/11/img24.jpg"
)
*/

//DROPDOWN MENU INIT
ddsmoothmenu.init({
mainmenuid: "mainMenu", //menu DIV id
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})

// PRETTY PHOTO INIT
$("a[rel^='prettyPhoto']").prettyPhoto();

// SHOW/HIDE FOOTER ACTIONS
$('#showHide').click(function(){	
	if ($("#footerActions").is(":hidden")) {
		$(this).css('background-position','0 0');
		$("#footerActions").slideDown("slow");
		
		} else {
		$(this).css('background-position','0 -16px') 
		$("#footerActions").hide();
		$("#footerActions").slideUp("slow");
		}
	return false;			   
});		

// TOP SEARCH 
$('#s').focus(function() {
		$(this).animate({width: "215"}, 300 );	
		$(this).val('')
});

$('#s').blur(function() {
		$(this).animate({width: "100"}, 300 );
});

// QUICK CONTACT

$('#quickName').val('your name');
$('#quickEmail').val('your email');
$('#quickComment').val('your message');

$('#quickName').focus(function() {
		$(this).val('');	
});

$('#quickEmail').focus(function() {
		$(this).val('');	
});

$('#quickComment').focus(function() {
		$(this).val('');	
});

//SHARE LINKS
$('#shareLinks a.share').click(function() {
		if ($("#shareLinks #icons").is(":hidden")) {
		$('#shareLinks').animate({width: "625"}, 500 );
		$('#shareLinks #icons').fadeIn();
		$(this).text('[-] Share & Bookmark');
		return false;
		}else {
		$('#shareLinks').animate({width: "130"}, 500 );
		$('#shareLinks #icons').fadeOut();
		$(this).text('[+] Share & Bookmark');
		return false;	
		}
});

});
<!-- end document ready -->

<!-- PrettyPhoto init -->


