// JavaScript Document

$(document).ready(function(){
	$('.homeTabs').hide();
	$('#enterpriseTab').show();
	$('#homeTabsNav a').click(function(event){
		event.preventDefault();
		$('#homeTabsNav li.selected').removeClass('selected');
		$(this).parents('li').addClass('selected');
		$('.homeTabs').hide();
		$($(this).attr('href')).show();
	});
	$('.popupform').colorbox({iframe:true, innerWidth:650, innerHeight:500, opacity:.40});
	$('.popuplist').colorbox({iframe:true, innerWidth:400, innerHeight:500, opacity:.40});
	$('.popupscreen').colorbox({iframe:true, innerWidth:990, innerHeight:700, opacity:.40});
	var myURL = document.location.href;
	if (myURL.indexOf('popup=true') > -1) {
		$.fn.colorbox({href:'contact.html',iframe:true, innerWidth:650, innerHeight:500, opacity:.40});
	}
});
