
$(document).ready(function(){
    




	if (!$.browser.safari) {

			$(".show_gal").mouseover(function(){
			  $("#gallery5, #gallery5_cont").animate({ 
				height: "130px"
				}, 900 );
			 	$("#gallery").fadeIn('slow');
				$("#gallery4").show();
			});
			

	}else{

		$(function() {
				$(".min_gal,.ext_gal").hide();  
		});
	
	}


	$(".close_gal").click(function () {
	  $("#gallery5, #gallery5_cont").animate({ 
		height: "0px"
		}, 200 );
	  $("#gallery").fadeOut('fast');
	  $("#gallery3").hide();
	  				
	});


	$(function() {
		$("#portf_cont").jCarouselLite({
			visible: 1,
			auto: 3500,
			speed: 500,
			btnNext: ".next",
			btnPrev: ".prev"
		});
	});




	$(function() {
		$("#gallery5_cont").jCarouselLite({
			visible: 1,
			auto: 9500,
			speed: 1500,
			btnNext: ".next",
			btnPrev: ".prev"
		});
	});


			
			
	$(".gallery_image1").hover(
		
		function(){
			$(this).animate({ 
			opacity: ".50"
			}, 250 );
		},
		function(){
			$(this).animate({ 
			opacity: "100"
			}, 200 );
		}

	);


});