// JavaScript Document
$(document).ready(function(){
	
	
	

	if($('.noflashmain').length>0){
			$("#share").css({
				display: "none"
			});
			
			$("#form_frame2").css({
				top: "-290px"
			});
		
			$(".facebooktxt").css({
				top: "-300px"
			});
			
	}
	
	if($('.noflashpromote').length>0){
			$("#share").css({
					display: "none"
			});
	}
	
	if($('.noflashcontact').length>0){
			$("#share").css({
					display: "none"
			});
			
			$(".contacttxt").css({
				top: "-170px"
			});
	}
	
	if($('#splash-modal').length > 0 ) {
		var closeModal = function(hash)
	    {
	        var $modalWindow = $(hash.w);

	        //$('#jqmContent').attr('src', 'blank.html');
	        $modalWindow.animate({top: -556},'2500');
	        $('.jqmOverlay').hide();
	    };
	    var openModal = function(hash)
	    {
	        var $modalWindow = $(hash.w);

	        //$('#jqmContent').attr('src', 'blank.html');
	        $modalWindow.show().animate(
		        {
					top: 88
				}
				,
				2000,
				'easeOutBounce'
			)
	    };

		$('#splash-modal').delay('1000').jqm({overlay: 0, modal: true, trigger: 'a#trigger-modal', onShow: openModal, onHide: closeModal});
		
		$('#splash-modal').jqmShow();
	}
});
