var CORE = {};

CORE.ua = navigator.userAgent.toLowerCase();
CORE.isiPhone = CORE.ua.indexOf('android') > -1;
CORE.isIpod = CORE.ua.indexOf('ipod') > -1;
CORE.isAndroid = CORE.ua.indexOf('iphone') > -1;

CORE.init = function() {
	CORE.flashBanner();
	CORE.popVideo();
	CORE.dropDown();

	$('#services > div:last').css('border', 'none');
},

CORE.flashBanner = function() {
	$('#flash-banner').flash({
		swf : '/site/default_site/images/banner.swf',
		width : '866',
		height : '164',
		wmode : 'transparent'
	});
},

CORE.popVideo = function() {
	$('#viewshowcase').fancybox({
		overlayColor : '#000'
	});
},

CORE.dropDown = function() {

	if( CORE.isAndroid || CORE.isiPhone || CORE.isiPod ) {
			return false;
	}
	
	$('#nav li ul').css({
		display : 'none',
		left : 'auto'
	});
	
	$('#nav li').hover(function() {
		$(this).find('ul').stop(true, true).fadeIn('fast');
	}, function() {
		$(this).find('ul').stop(true, true).fadeOut('fast');
	});
	
	$('#nav li ul li').mouseover(function() {
		$(this).addClass('liHighlight')
	})
	
	$('#nav li ul li').mouseout(function() {
		$(this).removeClass('liHighlight')
	});
	
}

jQuery(function($) {
	CORE.init();
});

/*
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
   if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://corestudiosinc.com/";
}
*/
