// Blend
$(function() {
	
	$('ul.blend2 li').css({"opacity":"1"});
	$('ul.blend2 li').hover(function() {
		$(this).stop(true,true).animate({"opacity":"0.6"});
	}, function() {
		$(this).stop(true,true).animate({"opacity":"1"});
	});
	
	$('#telimg').css({"opacity":"1"});
	$('#telimg').hover(function() {
		$(this).stop(true,true).animate({"opacity":"0.7"});
	}, function() {
		$(this).stop(true,true).animate({"opacity":"1"});
	});

});

// When the document loads do everything inside here ...
$(document).ready(function(){

	// When a link is clicked
	$("a.tab").click(function () {
		
		
		// switch all tabs off
		$(".active").removeClass("active");
		
		// switch this tab on
		$(this).addClass("active");
		
		// slide all content up
		$(".content").slideUp();
		
		// slide this content up
		var content_show = $(this).attr("title");
		$("#"+content_show).slideDown();
	  
	});

});
