$ = jQuery.noConflict();

$(document).ready(function() {
	
	// services
	$("#services li").each(function() {
		$(this).fadeTo(0, 0.75);	
	}).mouseover(function() {
		$(this).fadeTo(0, 1);	
	}).mouseout(function() {
		$(this).fadeTo(0, 0.75);	
	});
	
	// hero
	$("#hero").billboard({ transition:"fade", nav:"list" });
	
	// tabs 
	$("#portfolio-tabs .tabs li").click(function(e) {
		index = $("#portfolio-tabs .tabs li").index($(this));
		
		// tab states
		$("#portfolio-tabs .tabs li").removeClass("selected");
		$(this).addClass("selected");
		
		// thumbs
		$("#portfolio-tabs .thumbholder .thumbs").hide();
		$("#portfolio-tabs .thumbholder .thumbs").eq(index).show();
		
		e.preventDefault();
	})
	
});
