$(function() {
	var $browser = jQuery.browser;	

	/** Footer Start **/
	$("#footerContent").css({
		height: "0px",
		display: "none",
		visibility: "hidden"
	});
	
	$("#dragArea").click(function() {	
		if ($("#footerContent").attr("opened") == "opened") {
			$("#footerContent").animate({
				height: "hide",
				speed:	"fast"
			}).attr("opened", "closed");
			
			$("#footerFront").animate({
				bottom: "0px"
			});
		} else {
			$("#footerFront").animate({
				bottom: "160px"
			});
		
			$("#footerContent").attr("opened", "opened").css({
				height: "200px",
				visibility: "visible",
				display: "block"
			}).animate({
				height: "show",
				speed: "slow",
				opacity: "show"
			});
		}
	});
	
	/** Footer End **/
	
	/** Center Start **/
	$("#carosel").carousel({
		scroll: 1,
		autoSlide: true,
		autoSlideInterval: 5000,
		loop: true,
		btnsPosition: "outside"
	});
	/** Center End **/
});