/*
 * Tooltip script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
 


this.tooltip = function(){	
	/* CONFIG */		
		xOffset = 9;
		yOffset = 18;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */		
	$("a.tooltip").hover(function(e){											  
		this.t = this.title;
		this.title = "";									  
		$("body").append("<p id='tooltip'>"+ this.t +"</p>");
		$("#tooltip")
			.css("top",(e.pageY - yOffset) + "px")
			.css("left",(e.pageX + xOffset) + "px")
			.fadeIn("slow");		
    },
	function(){
		this.title = this.t;		
		$("#tooltip").remove();
    });	
	$("a.tooltip").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - yOffset) + "px")
			.css("left",(e.pageX + xOffset) + "px");
	});			
};

this.imagePreview = function(){	
	/* CONFIG */
		
		xOffset = 10;
		yOffset = 30;
		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result
		
	/* END CONFIG */
	$("a.preview").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='preview'><img src='"+ this.href +"' alt='Image preview' />"+ c +"</p>");								 
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#preview").remove();
    });	
	$("a.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

//JQuery Setup
$(function(){
 
//Important functions to fire first!
//-------------------------------------------------------------------------------
  	//IE6 duct tape
  	//detects if browser is IE by checking leadingWhitespace property. 
  	//See: http://docs.jquery.com/Utilities/jQuery.support
	var fancyHover = $.support.leadingWhitespace;
	if(fancyHover == false) {//browser is IE, use script
		$('#nav ul li').bind('mouseenter mouseleave', function(){
			$(this).toggleClass('sfhover');
		});	
	}
	//fix cleartype transparency bug with PNG

	
	//IE6 Upgrade Warning
	//-- requires:
	//-- <script type="text/javascript" src="http://1.scripts.sesamehost.com/scripts/jquery1.3.2.min.js"></script>
	//-- <script type="text/javascript" src="http://9.scripts.sesamehost.com/scripts/jquery.cookie.js"></script>
	
	//cookies
		
	//set cookie handler
	var alertBox = $.cookie('ie_alert');
	//if cookie val "noshow" then hide message - user has already seen this message!
	if(alertBox == 'noshow') {
		$('#alert').css('display', 'none');
	}else{
		$('#alert').css('display', 'block');
	}

	//click to close behavior
		$('.ie-alert-link').click(function() {
			$('#alert').slideToggle("slow");
			$.cookie('ie_alert', 'noshow', { expires: 14 });
		});

	//-- /end ie6 warning
	
	//superfish menus
	$('#nav>ul>li').superfish({ 
		hoverClass:		'sfhover',							//class used by IE for hover effects
        delay:			500,                             	//one second delay on mouseout 
        animation:		{'left':'auto'},				  	//fade-in and slide-down animation 
        speed:			'400',								//speed of animation 
        autoArrows:  	false,                           	//disable generation of arrow mark-up 
        disableHI:   	true              					// set to true to disable hoverIntent detection
    });


	// Some effects rely on an element to be initially hidden,
	// but we only hide them if the user has javascript
	$('.jshide').addClass('hide');
	
		
// Image Replacement	
//-------------------------------------------------------------------------------
	
	//Cufon + jQuery
	//--- requires:
	//--- <script type="text/javascript" src="scripts/jquery.fontavailable-1.1.min.js"></script>
	//--- <script type="text/javascript" src="http://2.scripts.sesamehost.com/scripts/cufon-yui.js"></script>
	if (!$.fontAvailable('Avenir Black, Avenir Black Oblique, Avenir Heavy')) {
		// load the cufon library
		$.ajax({
			type: 'GET',
			url: 'scripts/Avenir_Black_900.font.js',
			cache: true,
			success: function() { 
	            Cufon.replace('h1.title',{
	            	fontFamily: 'Avenir Black',
	            	textShadow: '0 -1px rgba(0, 0, 0, 0.65)'
	            });
	            Cufon.replace('#addresses dl dt a',{
	            	fontFamily: 'Avenir Black',
	            	textShadow: '0 -1px rgba(255, 255, 255, 0.4)'
	            });
			},
			dataType: 'script',
			data: null
		});
		$.ajax({
			type: 'GET',
			url: 'scripts/Avenir_Black_Oblique_900.font.js',
			cache: true,
			success: function() { 
	            Cufon.replace('#social-media dt',{
	            	fontFamily: 'Avenir Black Oblique',
	            	color: '-linear-gradient(#43aad2, #40a7cf)'
	            });
	            Cufon.replace('h2.tagline em',{
	            	fontFamily: 'Avenir Black Oblique',
	            	color: '-linear-gradient(#d9536d, #aa243e)'
	            });
			},
			dataType: 'script',
			data: null
		});
		$.ajax({
			type: 'GET',
			url: 'scripts/Avenir_Heavy_500.font.js',
			cache: true,
			success: function() { 
	            Cufon.replace('#nav>ul>li>a',{
	            	fontFamily: 'Avenir Heavy'
	            });
			},
			dataType: 'script',
			data: null
		});

	}

	// jQuery Cycle Plugin
$('.slideshow').cycle({
pause: true,
wmode: 'transparent'
});

// Duplicate the following block of code to add extra office tours
$('#cycle-office-tour') // Give this ID a unique name if more than one office tour is needed on a page
.before('<div class="office-tour-nav" id="office-1">') // Ditto for this ID
.cycle({
cleartype: true, // true if clearType corrections should be applied (for IE)
cleartypeNoBg: true, // Set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
speed: 500, // This controls speed of transition
timeout: 5000, // This controls delay between slides. Set to 0 if more than one office tour on a page, so they don't auto-play
pager: '#office-1',
before: function() {
$('#caption span').fadeOut(); // Give this ID a unique name if more than one office tour is needed on a page
},
after: function(curr, next, opts) {
var alt = $(next).find('img').attr('alt'); // This grabs the image alt text
$('#caption span').html(alt).fadeIn(); // This puts alt text into the caption span
}
}); 


//jcIR 
	//--- requires: 
	//--- <script type="text/javascript" src="http://4.scripts.sesamehost.com/scripts/jquery.pngFix.js"></script>
	//--- <script type="text/javascript" src="http://2.scripts.sesamehost.com/scripts/jquery.jcIR.js"></script>

	//check if images are enabled then run replacement


	//$('<img src="images/pixel.gif'+ '#' + Math.random() + '"/>').load(function() {
	//	$('.jcir.dr-names').jcIR({
	//		image_dir: 'callouts',//no slashes
	//		image_ext: '.jpg',//file extention of replacement image
	//		elem_width: '234',//width of element being replaced
	//		elem_height: '99'//height of el;ement being replaces
	//	});
	//});

	//---
	

// Utilities
//-------------------------------------------------------------------------------
	//PNG fix for IE6
	//--- requires
	//--- <script type="text/javascript" src="http://4.scripts.sesamehost.com/scripts/jquery.pngFix.js"></script>
	//$(document).pngFix(); 

	
//Toggle functions
//---------------------------------------------------------------------------------
	
	// Show only when javascript is available
	$('.toggle-link').css('display','block');

	//hide lists first!
	//$('#toggle-content li div').css('display','none');	
	$('#toggle-content dl').css('display','none');	

	//toggle
	function toggleInfoContent(id){
		if($('#' + id).css('display') != 'none'){
		  $('#' + id).fadeOut('fast');
		}else{
		  //$("#toggle-content li div").hide();
		  $("#toggle-content dl").fadeOut('fast');
		  $('#' + id).fadeIn('slow');
		  $('.top-link').removeClass('hide');
		}
	}
	$(".toggle-braces").click(function(){
	    toggleInfoContent('parts-of-braces');
	    return false;
	});

	$(".toggle-procedures").click(function(){
	    toggleInfoContent('orthodontic-procedures');
	    return false;
	});
	
	//Anatomy of a tooth
	$(".toggle-anatomy").click(function(){
	    toggleInfoContent('anatomy');
	    return false;
	});
	
	//Teeth for life
	$(".toggle-teeth").click(function(){
	    toggleInfoContent('know-your-teeth');
	    return false;
	});

	//Brushing and Flossing
	$(".toggle-brushing").click(function(){
	    toggleInfoContent('brushing-and-flossing');
	    return false;
	});
	
	//------


//Slideshows
//---------------------------------------------------------------------------------

	//Home Page Slideshow 
	
	var $ss = $('#slideshow-home'); 
         
    // add slides to slideshow (images 2-8) 
    for (var i = 2; i < 5; i++) 
        $ss.append('<img src="images/photos/slideshow-home/slide'+i+'.jpg" width="936" height="459" />'); 
 
    // start the slideshow 
    $ss.cycle({
        fx:     'fade',
        speed:   'slow',
        timeout: 7000
    });

    
	//Tours
	//--- requires: 
	//--- <script type="text/javascript" src="http://8.scripts.sesamehost.com/scripts/jquery.cycle.all.min.js"></script>

		$('.controls').css('display','block');//shows prev/next controls when js is enabled
		
		//sets a class to the slideshow to set dimensions
		$('.slideshow-wrapper').addClass('jq');

		//Office Tour
		    $('#tour-slideshow').cycle({
		        fx:     'fade',
		        speed:   'slow',
		        timeout: 0,
		        next:   '#tour-next',
		        prev:   '#tour-prev',
		        pause:  'true'
		    });

		//before and after slideshow
		    $('#before-after').cycle({
		        fx:     'fade',
		        speed:   'slow',
		        timeout: 6000
		    });


// Standard Flash Modules
//-------------------------------------------------------------------------------

	//--- requires
	//--- <script type="text/javascript" src="http://2.scripts.sesamehost.com/scripts/jquery.flash.js"></script>
	
	// Define the default configuation values
	// followed by individual module configuration.
	// Values for individual modules will override the defaults
	var flashModules = {
		
		defaults: {			
			width: 500,
			height: 300,
			wmode: 'transparent',
			flashvars: {
				autoPlay: 'false', // change value to 'true'to play on start
				thisColor: '0x' + '004881' // change global hex color (default=639CCE)
			},
			pluginOptions: {version: 9}
		},
	
	modules: [
	  // Define the configuration values for each flash module.
	  // Change item values in any 'flashvars' section to false to omit,
	  // Add any value to override the default value in flashModuleDefaults.
	  
	  {name: 'home', config: {width:500, height:262}},
	  {name: 'braces-diagram', config: {height: 375}},
	  {name: 'brace-painter', config: {height: 430, wmode:'opaque'}},
	  
	  	
	  {name: 'brushing-and-flossing-ortho',
	    config: {
	      flashvars: {
	        brushing: 'true',
	        flossing: 'true'
	      }
	    }
	  },
	  {name: 'brushing-and-flossing-dental',
	    config: {
	      flashvars: {
	        brushing: 'true',
	        flossing: 'true'
	      }
	    }
	  },
	  
	  {name: 'color-your-retainer', config: {width: 300, height: 300}},
	  
	  {name: 'common-treatments',
	    config: {
	      flashvars: {
	        crowding: 'true',
	        openbite: 'true',
	        deepOverbite: 'false',
	        missing: 'false',
	        underbite: 'true',
	        spacing: 'true',
	        overbite: 'true',
	        nonBraces: 'false',
	        phaseI: 'false'
	      }
	    }
	  },
	  
	  {name: 'the-damon-system-comparison', config: {width:250, height:165, wmode:'opaque'}},
	  
	  {name: 'emergency-care',
	    config: {
	      flashvars: {
	        pokingWire: 'true',
	        bracket: 'true',
	        looseWire: 'true',
	        appliance: 'true',
	        headgear: 'false',
	        soreness: 'true'
	      }
	    }
	  },
	  
	  {name: 'ibraces-logo', config: {width:200, height:135, wmode:'opaque'}},
	  
	  {name: 'know-your-teeth', config: {width:500, height:400}},
	  
	  {name: 'office-tour',
	    config: {width:500, height:375, wmode:'opaque',
		  flashvars: { 
			caption01: '',
			caption02: 'Entry way',
			caption03: 'Reception area',
			caption04: 'Coffee tables and chairs',
			caption05: 'Coffee bar',
			caption06: 'Family waiting room',
			caption07: 'Adult waiting room',
			caption08: 'Game room',
			caption09: 'Exam and consultation room',		  
			caption10: 'Records room',		  
			caption11: 'X-ray room',
			caption12: 'Sterilization area',
			caption13: 'Brushing area',
			caption14: 'Open treatment bay',
			caption15: '',
			caption16: ''		  
	      }	  
	    }
	  },
	
	  {name: 'palatal-expander', config: {width: 200, height: 150}},
	  {name: 'patient-care', config: {height: 375}},

		{name: 'smile-gallery',
	    config: {
	      flashvars: {
	        bonding: "true",
	        bridges: "true",
	        crowns: "true",
	        fillings: "true",
	        implants: "true",
	        invisalign: "true",
	        veneers: "true",
	        whitening: "true"
	      }
	    }
	  },
	  
	  {name: 'types-of-appliances',
	    config: {
	      flashvars: {
	        elastics: 'true',
	        headgear: 'false',
	        herbst: 'false',
	        palatal: 'true',
	        positioners: 'false',
	        separators: 'true'
	      }
	    }
	  },
	  
	  {name: 'types-of-braces',
	    config: {
	      flashvars: {
	        metal: 'true',
	        gold: 'true',
	        ceramic: 'true',
	        invisible: 'true',
	        lingual: 'true'
	      }
	    }
	  }
	]
	};
	
	// Loop through the defined modules 
	// and do flash replacement for any that are on the current page
	for (var j = flashModules.modules.length - 1; j >= 0; j--){
		var module = flashModules.modules[j];
		// combine default config settings with individual module config settings
		var modConfig = $.extend({}, flashModules.defaults, module.config);
		// combine default flashvars with module flashvars
		modConfig.flashvars = $.extend({}, flashModules.defaults.flashvars, module.config.flashvars);
		modConfig.src = 'flash/' + module.name + '.swf';
		$('#flash-' + module.name).flash(modConfig, flashModules.defaults.pluginOptions);
	}

// Flash Video functions
//-------------------------------------------------------------------------------

var flashVideos = {
	
		defaults: {
		  // Define the configuation values applied to each module.
		  // Each module in flashModules can override these values.
		  
		  src: 'video/flvPlayer.swf',
		  width: 320,
		  height: 266,
		  wmode: 'transparent',
		  menu: false,
		  allowFullScreen: true,
		  flashvars: {
		    autoStart: "false", // change value to true to play on start
		    showScaleModes: "false", //set to false to disable scale modes menu
		    smoothVideo: "true" //set to false to disable video smoothing 
		  },
		  pluginOptions: {version: 9}
		},
	
		videos: [
			{name: 'the-damon-system',config:{width: 240, height: 206}},
			{name: 'the-damon-system-2',config:{width: 400, height: 330}},
			{name: 'in-ovation',config:{}},
			{name: 'ibraces-1',config:{}},
			{name: 'ibraces-2', config: {width: 352}},
			{name: 'ibraces-3', config: {width: 352}},
			{name: 'invisalign', config: {width: 360}},
			{name: 'suresmile-01', config: {height: 206}},
			{name: 'first_call_diet_and_braces', config: {width: 400, height: 320}},
			{name: 'first_call_flossing_with_braces', config: {width: 400, height: 320}},
			{name: 'first_call_toothbrushing_tips', config: {width: 400, height: 320}},
			{name: 'first_call_innovation_c', config: {width: 400, height: 320}},
			{name: 'first_call_invisalign', config: {width: 400, height: 320}},
			{name: 'first_call_turning_your_expander', config: {width: 400, height: 320}}
		]
	};
	for (var j=0; j < flashVideos.videos.length; j++) {
		var video = flashVideos.videos[j];
		// combine default config settings with module config settings
		var vidConfig = $.extend({}, flashVideos.defaults, video.config);
		// combine default flashvars with module flashvars
		vidConfig.flashvars = $.extend({}, flashVideos.defaults.flashvars, video.config.flashvars);
		vidConfig.flashvars.flvToPlay = video.name + '.flv';
		vidConfig.flashvars.startImage = 'video/' + video.name + '.jpg';
		$('#video-' + video.name).flash(vidConfig, flashVideos.defaults.pluginOptions);
	};

// Game room
//-------------------------------------------------------------------------------
	
	// list the games that we want activated on click
	var games = Array('asteroids', 'frogger', 'pong', 'simon', 'snake', 'space-invaders', 'tetris', 'tic-tac-toe');
	
	// set the click behavior for a game link
	var setGameClick = function(game){
	$("a." + game).click(function(){
	  $('#sesame-game').flash(  // #sesame-game is the empty div that will contain the active game
	    {
	    src: 'games/' + game + '.swf',
	    width: 400,
	    height: 300,
	    wmode: 'transparent'
	    },
	    { version: 8 }
	  );
	});
	};
	
	// loop through the games array and
	// set the click behavior for each game link
	for (var j=0; j<games.length; j++){
	setGameClick(games[j]);
	};

//Basic HTML functions
//---------------------------------------------------------------------------------

	// add 'back to top' link when the content is taller than the window
	// this has to be done after flash replacement because the content height changes
	//-- requires: <p class="top-link hide"><a href="#container">Back to top &uarr;</a></p> just before the closing content tag
	//-- requires .hide {display: none;} is css
	if ($('#content-body').height() > $(window).height()) {
		$('.top-link').removeClass('hide');
	}
	
	
	// Open external links in new windows
	$('a[href^="http://"], a[href^="https://"]').not('[href*="orthosesame.com"]').addClass('external').attr('target', '_blank');
	
	// Open pdf links in new windows + add icon
	$('a[href$=".pdf"]').attr('target', '_blank').not('[class*="noicon"]').parent().append('<span/>').addClass('pdf');

	// add icons to links which open in prettyPhoto
	$("a[rel^='prettyPhoto[flash]']").parent('li').append('<span/>').addClass('video-link');

 
	//Ordered List Style

	$('ol.alpha, ol.numeric').addClass('js');
	$("ol li").each(function (i) {
	    $(this).wrapInner('<span/>');
    });

	//fancy quotes
	//--- required styles
	//--- q:before, q:after {/* remove quotes since IE doesn't understand :( */
	//---    content: ""; 
	//--- }
	//--- q {font-style: oblique;}
	//--- q.js span {font: 22px Georgia; color: #802c11; line-height: 18px; vertical-align: middle;}
	$('q').addClass('js');
	$('q').each( function (i) {
		$(this).prepend('<span>&ldquo;</span>').append(' <span>&rdquo;</span>');
	});

	// Anti-spam email obfuscater
	//-- requires <script type="text/javascript" src="http://10.scripts.sesamehost.com/scripts/jquery.jcAntiSpam.js"></script> 
	//-- change the ('#ID OF CONTAINER') to to the id of the container which holds your email
	//$('.antiSpam').jcAntiSpam({
	//	emailCommonName: '',//Name displayed in link text, e.g., 'Email So-And-So'
	//	emailName:       '',//First half of primary email address; before "@" symbol
	//	emailDomain: 	 '',// Full Primary email domain name
	//	emailCcName: 	 '',//First half of CC email address; before "@" symbol
	//	emailCcDomain:   ''//CC email domain name
	//});
	
	//hover effects for logos
	if(!fancyHover == false) { 	
		$('.links-box a img,#social-media li a').css({opacity: 1})
		$('.links-box a img, #social-media li a').hover(
			function() {
				$(this).animate({
					opacity: 0.65
				}, 250);
			},
			function() {
				$(this).animate({
					opacity: 1
				}, 500);
			}
		);
	}
	//tooltips
	// needs image class of tooltip
	tooltip();
	
	//image preview
	//needs a class of preview
	imagePreview();

//PrettyPhoto
//---------------------------------------------------------------------------------
	//Load prettyPhoto
	// check if rel=prettyphoto exists (plugin trigger)
	if ($("a[rel^='prettyPhoto']").length > 0 ) {
		
		// load pretty photo css
		$('<link>').attr({
			'rel': 'stylesheet',
			'type': 'text/css',
			'href': 'css/prettyPhoto.css',
			'media': 'screen' 
		}).appendTo(document.getElementsByTagName('head')[0]);
		
		// load prettyphoto js (getscript of jQuery prevents caching so using ajax)
		$.ajax({
			type: 'GET',
			url: 'scripts/jquery.prettyPhoto.js',
			cache: true,
			success: function() { 
				$("a[rel^='prettyPhoto']").prettyPhoto({
					animationSpeed: 'normal', /* fast/slow/normal */
					padding: 36, /* padding for each side of the picture */
					opacity: 0.45, /* Value betwee 0 and 1 */
					showTitle: true, /* true/false */
					allowresize: true, /* true/false */
					counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
					theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square */
					hideflash: false /* Hides all the flash object on a page, set to TRUE if flash appears over prettyPhoto */
				}); 
			},
			dataType: 'script',
			data: null
		});
	}

//Form Functions
//---------------------------------------------------------------------------------
	
	//toggle hidden field on Appointment Request Form
	$('#Found').change(function() {
		var selected = $('#Found option:selected');
		if(selected.val() == 'Other') {
			$('#found-other').toggle();
		} else {
			$('#found-other').hide();
		}
	});  
	
	//clear form fields with "clearme" class when clicked
	$('.clearme').one("focus", function() {
			$(this).val("");
	});

	//add red asterisk to label of required fields
	$('label.required').each(function(i) {
		$(this).prepend('<em> * </em>');
	});
	
//Form validation
//---------------------------------------------------------------------------------
	
	//--- requires: 
	//--- <script type="text/javascript" src="http://6.scripts.sesamehost.com/scripts/jquery.validate.js"></script>
	//--- <script type="text/javascript" src="http://7.scripts.sesamehost.com/scripts/jquery.maskedinput-1.2.2.min.js"></script>

	//masked input
	$(".date-mask").mask("99/99/9999");
	$(".phone-mask").mask("(999) 999-9999");

	//additional validation methods
	$.validator.addMethod("phone", function(phone_number, element) {
	    phone_number = phone_number.replace(/\s+/g, ""); 
		return this.optional(element) || phone_number.length > 9 &&
			phone_number.match(/^(1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
	}, "Please specify a valid phone number");

	//validator
	$(".validate").each(function() {
		$(this).validate({
			errorElement: "div",
				success: function(label) {
					label.text("ok!").addClass("success");
				},
			rules: {
				Name: {
					required:true,
					minlength: 5
				},
				Doctor_Name: {
					required:true,
					minlength: 5
				},
				Patient_Name: {
					required:true,
					minlength: 5
				},
				Patient_Email: {
					required: true,
					email:true
				},
				Patient_Patient_Referring: {
					required:true,
					minlength: 5
				},
				Doctor_Patient_Referring: {
					required:true,
					minlength: 5
				},
				Doctor_Email: {
					required: true,
					email:true
				},
				Appointment_Email: {
					required: true,
					email:true
				},
				Email: {
					email:true
				},
				Daytime_Phone: {
					required: true,
					phone: true	
				},
				Patient_Phone: {
					required: true,
					phone: true	
				},
				Message: {
					required:true,
					minlength: 12
				},
				Would_like_to: {
					required: true
				},
				User_Name: {
					required: true
				},
				Password: {
					required: true
				},
				txtNumber: {
					required:true,
					minlength: 5
				}
			}
		});
	});

});//end document.ready
