//Main Js for EstiLivingston.com

//Footer Slider JS
$(function() {
	var open = false;
	$('#footerSlideButton').click(function() {
		if(open === false) {
			$('#footerSlideContent').animate({ height: '125px' });
			$(this).css('backgroundPosition', 'bottom right');
			open = true;
		} else {
			$('#footerSlideContent').animate({ height: '0px' });
			$(this).css('backgroundPosition', 'top right');
			open = false;
		}
	});
});

$(document).ready(function() {


	$('#printThisPage').click(function(event) {
        $('body').jqprint();
    });
	

	$('#showcase').awShowcase(
    		{
        content_width:  532,
        content_height: 355
    	});

	
});

