
$(window).resize(function(){		
	});

 $(document).ready(function(){
		tabs();
		if($("#portfolio_sroll").length>0) scrollheight();
		jQuery('#logos-carousel').jcarousel();			
	});
 
 function tabs(){
	   $(".s_tabs dt").click(function(){
				$(".tabs .s_tabs dt.selected").removeClass("selected");
				$(".tabs .s_tabs dd.selected").removeClass("selected");
				$(this).toggleClass("selected");
				$(this).parents(".s_tabs").find("dd").toggleClass("selected");
				scrollheight();
			});	 
	 }

function scrollheight(){
	li = $(".s_tabs dd.selected #portfolio_sroll ul li");
	height = 0;
	for(i=0;i<li.length;i++){
		if(height<li.height()) height = li.height();
		}
	$(".s_tabs dd.selected #portfolio_sroll ul").css("height",height+"px");
	$(".s_tabs dd.selected #portfolio_sroll ul li").css("height",height+"px");
	}
