$(document).ready(function(){
						 
//	SCROLL CONTENT
$('#scrollContent').tinyscrollbar();
$('#scrollContent2').tinyscrollbar2();	

// 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 );
		$(this).val('type your search');
});

// QUICK CONTACT

$('#quickName').val('your name');
$('#quickEmail').val('your email');
$('#quickComment').val('your message');
$('#quickPhone').val('your phone');

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

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

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

$('#quickPhone').focus(function() {
		$(this).val('');	
});

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

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

<!-- fade in out buttons  -->
//$(document).ready(function() {
		//$('.davesbutton,.mikesbutton,.jennsbutton,.anotherbutton').append('<span class="hover"></span>').each(function () {
	  	//	var $span = $('> span.hover', this).css('opacity', 0);
	  	//	$(this).hover(function () {
	    	//	$span.stop().fadeTo(500, 1);
	 		//}, function () {
	   //	$span.stop().fadeTo(500, 0);
	  	//	});
		//});
	//});
