var counter=0;
function scrolLeft()
{
	if (counter > 0)
		counter = counter-1;
			clearInterval(inslide);
		inslide = undefined;
	scrolAll();
	inslide = setInterval("AutoSlide()", scrollspeed);
	
}
function scrolRight()
{
	if (counter<3)
	counter = counter+1;
		clearInterval(inslide);
		inslide = undefined;
	scrolAll();
	inslide = setInterval("AutoSlide()", scrollspeed);
}
function scrolTo(id)
{
	counter = id; 
		clearInterval(inslide);
		inslide = undefined;
	scrolAll();
	inslide = setInterval("AutoSlide()", scrollspeed);
}
function scrolAll()
{
	//979
	//212
	var marginarray = new Array();
	marginarray[0]='-1';
	marginarray[1]='-215';
	marginarray[2]='-428';
	marginarray[3]='-634';
	$("#carousel-group").animate({"marginLeft": (counter*979*(-1))+"px"},1000);
	$("#descriptions").animate({"marginTop": marginarray[counter]+"px"},1000);
	
	

}
function AutoSlide()
{
	if (counter<3)
		counter = counter+1;
	else
		counter = 0;
	scrolAll();
		
}
function dispatchLinker(src)
 {
  	window.open(src, 777 , 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600,left = 600,top = 500');
 }
function select(tabid,menu_left,menu_right){

	$(".tab").addClass('hidden');
	$("#"+tabid).removeClass('hidden');
	
	$(".tab_left").removeClass('left_a');
	$(".tab_left").addClass('left_p');
	$("#"+menu_left).removeClass('left_p');
	$("#"+menu_left).addClass('left_a');
	
	$(".tab_right").removeClass('right_a');
	$(".tab_right").addClass('right_p');
	$("#"+menu_right).removeClass('right_p');
	$("#"+menu_right).addClass('right_a');
	
	

	return false;

}
function open_menu(id,pid){

	document.getElementById(id).className='show';
	document.getElementById(pid).className='leftmenu_a';
	return false;

}
function navigate(url)

	{window.location=url;}
function redirect(el)

	{window.location=el.value;}
function swtabz(rtab,uid)

{



  tohide = $("#tabbodycontainer_"+uid+" > *");

  toshow = $('#tabbody_'+rtab+'_'+uid);

 

  tohide.addClass('tabbody');

  tohide.removeClass('currenttabbody');

  toshow.addClass('currenttabbody');

  toshow.removeClass('tabbody');



  tohide = $("#tabcontainer_"+uid+" > div");

  toshow = $('#tab_'+rtab+'_'+uid);

 

  tohide.addClass('tab');

  tohide.removeClass('currenttab');

  toshow.addClass('currenttab');

  toshow.removeClass('tab');
}
 function ghover(id,src)
 {
 	$('.img_marging').removeClass('gsel');
 	$('.img_marging').addClass('gunsel');
 	$('#small_'+id).removeClass('gunsel');
 	$('#small_'+id).addClass('gsel');
 	
 	$('.big_image').removeClass('gshow');
 	$('.big_image').addClass('ghide');
 	$('#big_'+id).removeClass('ghide');
 	$('#big_'+id).addClass('gshow');

 	$('#front_title').text(gtitles[id]);
 	$('#front_text').text(gshorts[id]);
 	
 	return false;
 }

