// JavaScript Document
$(document).ready(function() {
		
		$("#tab1").hover(function() {
		  $("#home-tabs").addClass('tab1');
		  $("#tab-content1").removeClass('hide');
		  $("#tab-content1").addClass('show');
		  $("#tab-content2").addClass('hide');
		  $("#tab-content3").addClass('hide');
		  $("#tab-content4").addClass('hide');
		  $("#home-tabs").removeClass('tab2 tab3 tab4');		  
		});
		
		$("#tab2").hover(function() {
		  $("#home-tabs").addClass('tab2');
		  $("#tab-content2").removeClass('hide');
		  $("#tab-content1").addClass('hide');
		  $("#tab-content3").addClass('hide');
		  $("#tab-content4").addClass('hide');
		  $("#home-tabs").removeClass('tab1 tab3 tab4');		  
		});
		
		$("#tab3").hover(function() {
		  $("#home-tabs").addClass('tab3');
		  $("#tab-content3").removeClass('hide');
		  $("#tab-content2").addClass('hide');
		  $("#tab-content1").addClass('hide');
		  $("#tab-content4").addClass('hide');
		  $("#home-tabs").removeClass('tab2 tab1 tab4');		  
		});
		
		$("#tab4").hover(function() {
		  $("#home-tabs").addClass('tab4');
		  $("#tab-content4").removeClass('hide');
		  $("#tab-content2").addClass('hide');
		  $("#tab-content3").addClass('hide');
		  $("#tab-content1").addClass('hide');
		  $("#home-tabs").removeClass('tab2 tab3 tab1');		  
		});
		
		
		
	});
$(document).ready(function() {
		$('#home-top-spot').cycle({
			fx:     'fade',
			speed:  'slow',
			timeout: 4000,
			cleartypeNoBg: true
		});
});

$(document).ready(function() {
	$(function(){	
			$("#logo-scroller").imageScroller({
				frame:"logo-frame",
				width:150,
				child: "img",
				auto:true
			});
		});
});


