// JavaScript Document
// HEADER IMAGE HANDLING 
var imgIn = function(){
	$('#rightheaderjpg img.active').removeClass('active').fadeOut('slow', function(){
		if($(this).next('img').length > 0){
			$(this).next('img').addClass('active').fadeIn('slow',function(){
				imgWait();
			});
		}else{
			$('#rightheaderjpg img:first-child').addClass('active').fadeIn('slow',function(){
				imgWait();
			});
		}
	})
}
var imgWait = function(){
	setTimeout(imgIn, 3000);
}
$(document).ready(function(){
	$('#rightheaderjpg img:first-child').addClass('active').fadeIn('slow',function(){
		imgWait();
	});
});
// END HEADER IMAGE HANDLING

// MAIN NAV CONTROLS
$(document).ready(function(){
$('#topmenu #topMenuItems .topMenuItem')
				.mouseenter(function(){
					if($('.topSubMenuItems.active', this).length == 0){
						$(this).children('.topSubMenuItems').fadeIn(300).addClass('active');
					}
				})
				.mouseleave(function(){
					if($('.topSubMenuItems.active', this).length > 0){
						$(this).children('.topSubMenuItems').fadeOut(300).removeClass('active');
					}
				});
});
//END MAIN NAV CONTROLS

$(document).ready(function(){
	$('#leftheaderjpg').bind('click',function(){
		window.location.href = '/';
	});
	$('#topmenu #topMenuItems .topMenuItem > a').bind('click', function(){
		if($(this).attr('href') == '#'){
			return false;	
		}
	});
});
