$(document).ready(function() {

	$(".col").hide(); //Hide all content

	$(".col:first").show(); //Show first tab content



	//On Hover event

	$("ul.portfolio a").click(function(e) {

		e.preventDefault();

		//$(".text").animate({width: 'show'}, 1000);

    $(".text").slideDown(700); // Show caption

		$(".col").stop(true, true).hide(); //Hide all tab content

		var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content

		$(activeTab).stop(true, true).show();//Fade in the active ID content

	});

	$("ul.portfolio a").hoverIntent(function(e) {

		$(this).stop().animate({ opacity: 0.8 }, 200); //Change opacity of the link to 80%

	},

	function() {

		$(this).stop().animate({ opacity: 1.0 }, 300); //Change opacity of the link back to 100%

	});

	/*$('ul.portfolio a').click(function(){  //Remove default behavior of link

                     return false;

        });*/

});
