jQuery(function($){
  var timer = setInterval( showDiv, 7000);
  var counter = 2;   
  function showDiv() { 
  var state = $("#state").val();
  if (state == 'play'){
    $('.spl1, .spl2, .spl3, .spl4') 
      .stop() 
      .hide() 
      .filter( function() { return this.className.match('spl' + counter); })  
      .fadeIn(0); 
	$('#active').val(counter);
    counter == 4? counter = 1 : counter++;
    }
  } 
});
	jQuery(function($){$('.splash_hover a').mouseover(function(){
		var active = $("#active").val();
		var shid = $(this).attr("class").replace(/sh/,'');
		$("#state").val('pause');
		if(shid !== active){ 
		$('.splash').fadeOut(0);
		$(".spl"+shid).fadeIn(0);
		$('#active').val(shid);
		
		}
		return false;
	});
    });
    jQuery(function($){
	$('.spl_right').mouseover(function(){
		$("#state").val('pause');
	});
    });
	jQuery(function($){
	$('#splasharea').mouseout(function(){
		$("#state").val('play');
		return false;
	});  
    });              
