$("#buffaloplaid").hover(
	function(){
		$(this).animate(
			{ height: "206px",  width: "206px", left: "-10px"}, 
			200, 'swing' 
		)
	},
	function(){
		$(this).animate(
			{ height: "143px", width: "143px", left: "30px"}, 
			200, 'swing' 
		)
	}
);
/* Tiedye */
$("#tiedye").hover(
	function(){
		$(this).animate(
			{ height: "140px",  width: "140px"}, 
			200, 'swing' 
		)
	},
	function(){
		$(this).animate(
			{ height: "86px", width: "86px"}, 
			200, 'swing' 
		)
	}
);

/* Penguins */
$("#penguins").hover(
	function(){
		$(this).animate(
			{ height: "238px",  width: "238px"}, 
			200, 'swing' 
		)
	},
	function(){
		$(this).animate(
			{ height: "150px", width: "150px"}, 
			200, 'swing' 
		)
	}
);

/* Boston Plaid */
$("#bostonplaid").hover(
	function(){
		$(this).animate(
			{ height: "300px",  width: "300px"}, 
			200, 'swing' 
		)
	},
	function(){
		$(this).animate(
			{ height: "224px", width: "224px"}, 
			200, 'swing' 
		)
	}
);


/* Butterflies*/
$("#butterflies").hover(
	function(){
		$(this).animate(
			{ height: "189px",  width: "189px"}, 
			200, 'swing' 
		)
	},
	function(){
		$(this).animate(
			{ height: "153px", width: "153px"}, 
			200, 'swing' 
		)
	}
);


/* Tattoo*/
$("#tattoo").hover(
	function(){
		$(this).animate(
			{ height: "234px",  width: "234px"}, 
			200, 'swing' 
		)
	},
	function(){
		$(this).animate(
			{ height: "180px", width: "180px"}, 
			200, 'swing' 
		)
	}
);

/* Social Tabs */

$("#YouTube, #Twitter").hide().addClass("hide");

$("#Facebook").addClass("show");
$("#nav-Facebook a").addClass("active");

$("#social_feeds li a").click(function(){
	$("#social_feeds li a").removeClass("active");
	$(this).addClass("active");
	var href = $(this).attr("href");
	//$("#test").html(href);
	if($(href).attr("class") == "show") return false;
	
	else {
			$(".show").removeClass("show").hide();
			$(href).addClass("show").removeClass("hide").show();
			return false;
			
		}
	
	
	});

















