jq(document).ready(function(){

//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
jq("a[rel^='prettyPhoto']").prettyPhoto();

// SHOW/HIDE FOOTER ACTIONS
jq('#showHide').click(function(){	
	if (jq("#footerActions").is(":hidden")) {
		jq(this).css('background-position','0 0');
		jq("#footerActions").slideDown("slow");
		
		} else {
		jq(this).css('background-position','0 -16px') 
		jq("#footerActions").hide();
		jq("#footerActions").slideUp("slow");
		}
	return false;			   
});		

// TOP SEARCH 
jq('#s').focus(function() {
		jq(this).animate({width: "215"}, 300 );	
		jq(this).val('')
});

jq('#s').blur(function() {
		jq(this).animate({width: "100"}, 300 );
});

// QUICK CONTACT

jq('#quickName').val('your name');
jq('#quickEmail').val('your email');
jq('#quickComment').val('your message');

jq('#quickName').focus(function() {
		jq(this).val('');	
});

jq('#quickEmail').focus(function() {
		jq(this).val('');	
});

jq('#quickComment').focus(function() {
		jq(this).val('');	
});

//SHARE LINKS
jq('#shareLinks a.share').click(function() {
		if (jq("#shareLinks #icons").is(":hidden")) {
		jq('#shareLinks').animate({width: "625"}, 500 );
		jq('#shareLinks #icons').fadeIn();
		jq(this).text('[-] Share & Bookmark');
		return false;
		}else {
		jq('#shareLinks').animate({width: "130"}, 500 );
		jq('#shareLinks #icons').fadeOut();
		jq(this).text('[+] Share & Bookmark');
		return false;	
		}
});

});
<!-- end document ready -->

<!-- PrettyPhoto init -->


