	$(document).ready(function() {		$(".bucket-projects").hover(projectsShow,projectsHide);		$(".bucket-projects").click(function() {			window.location = "category/latest-projects/";			});		$(".bucket-testimonials").hover(testimonialsShow,testimonialsHide);		$(".bucket-testimonials").click(function() {			window.location = "category/testimonials/";			});		$(".bucket-social").hover(socialShow,socialHide);	});				// PROJECTS FLYOUT		function projectsShow(){  		var currentHeight = $(".bucket-projects .bucket-pop").height();        $(".bucket-projects .bucket-pop").css('height', 'auto');        var height = $(".bucket-projects .bucket-pop").height();        $(".bucket-projects .bucket-pop").css('height', currentHeight + 'px');				$(".bucket-projects .bucket-pop").animate({"height": height},200);		$(".bucket-projects .bucket-pop").fadeIn("fast");		$(".bucket-projects").css({			"backgroundPosition": "left bottom"			});		$(".bucket-projects h4").css({			"backgroundPosition": "left bottom",			"color": "#6cabdc"			});		}	function projectsHide(){ 		$(".bucket-projects .bucket-pop").animate({"height":0},200);		$(".bucket-projects .bucket-pop").fadeOut("fast");		$(".bucket-projects").css({			"backgroundPosition": "left top"			});		$(".bucket-projects h4").css({			"backgroundPosition": "left top",			"color": "#666"			});		}			// TESTIMONIALS FLYOUT		function testimonialsShow(){  		var currentHeight = $(".bucket-testimonials .bucket-pop").height();        $(".bucket-testimonials .bucket-pop").css('height', 'auto');        var height = $(".bucket-testimonials .bucket-pop").height();        $(".bucket-testimonials .bucket-pop").css('height', currentHeight + 'px');				$(".bucket-testimonials .bucket-pop").animate({"height": height},200);		$(".bucket-testimonials .bucket-pop").fadeIn("fast");		$(".bucket-testimonials").css({			"backgroundPosition": "left bottom"			});		$(".bucket-testimonials h4").css({			"backgroundPosition": "left bottom",			"color": "#6cabdc"			});		}	function testimonialsHide(){ 		$(".bucket-testimonials .bucket-pop").animate({"height":0},200);		$(".bucket-testimonials .bucket-pop").fadeOut("fast");		$(".bucket-testimonials").css({			"backgroundPosition": "left top"			});		$(".bucket-testimonials h4").css({			"backgroundPosition": "left top",			"color": "#666"			});		}			// SOCIAL FLYOUT		function socialShow(){  		var currentHeight = $(".bucket-social .bucket-pop").height();        $(".bucket-social .bucket-pop").css('height', 'auto');        var height = $(".bucket-social .bucket-pop").height();        $(".bucket-social .bucket-pop").css('height', currentHeight + 'px');				$(".bucket-social .bucket-pop").animate({"height": height},200);		$(".bucket-social .bucket-pop").fadeIn("fast");		$(".bucket-social").css({			"backgroundPosition": "left bottom"			});		$(".bucket-social h4").css({			"backgroundPosition": "left bottom",			"color": "#6cabdc"			});		}	function socialHide(){ 		$(".bucket-social .bucket-pop").animate({"height":0},200);		$(".bucket-social .bucket-pop").fadeOut("fast");		$(".bucket-social").css({			"backgroundPosition": "left top"			});		$(".bucket-social h4").css({			"backgroundPosition": "left top",			"color": "#666"			});		}
