﻿// JavaScript Document
function receivedAnimation(e){
	//alert(e.tabControlInstance);
	e.tabControlInstance.contentInstance.css('background-image','none');
}

function sendAnimation(e){
	jQuery('.tabs .active').removeClass('active');
	jQuery(e.clickedLink).parent().addClass('active');

	//alert(e.tabControlInstance.contentInstance);
	e.tabControlInstance.contentInstance.css('background','url("assets/snippets/tabControl/img/loading.gif") center no-repeat');
}

t1=tabControl('.tabs','.tabContent',sendAnimation,receivedAnimation);
