﻿
$(document).ready(function () {

	// landing page:
	$('#discover-the-world > ul > li[id=P6842]').tooltip(Language.P6842, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P6208]').tooltip(Language.P6208, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P8260]').tooltip(Language.P8260, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P8982]').tooltip(Language.P8982, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P9748]').tooltip(Language.P9748, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P8984]').tooltip(Language.P8984, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P9750]').tooltip(Language.P9750, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P9751]').tooltip(Language.P9751, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li[id=P9752]').tooltip(Language.P9752, { name: 'details', action: 'mouseover', position: 'mouse', offset_x: -10, offset_y: -70 });
	$('#discover-the-world > ul > li').addHoverState();	
	
	$('#meet-the-princesses > ul > li').prepend('<div id="banner">');
	$('#meet-the-princesses > ul > li > a').hover( 
		function () { 
			$('div', $(this).parent().get(0)).addClass('hover-active');
			$(this).addClass('hover-active'); 
		},
		function () { 
			$('div', $(this).parent().get(0)).removeClass('hover-active');
			$(this).removeClass('hover-active');
		}
	);			
//	var $princesses = $('#meet-the-princesses > ul > li');
//	$princesses.each(function (i) {
//			var $obj = $(this);
//			var $newA = $obj.children('a').clone();
//			$obj.prepend($newA);
//			$newA.wrap('<div id="banner"></div>');
//		});

	// dvd page:
	$('#dvd-thumbnails > ul > li > div > a').click(function () {
		//var div = $('div', $(this));		
		//if(div.attr('rel') != null && div.attr('rel').length > 0) {
		if($(this).attr('rel') != null && $(this).attr('rel').length > 0) {
			var options = $(this).attr('rel').split('|');
			var settings = {
				filepath : options[0],
				width: options[1] || 560,
				height: options[2] || 400,
				description: options[3] || ''
			}
			if($('#pp_flash > embed').attr('src') != settings.filepath) {
				$('#pp_flash').empty();
				$('#pp_flash').flash({ 
					src: settings.filepath,
					width: settings.width,
					height: settings.height,
					flashvars: {Description: settings.description }
				});	
			}
		}	
		
	});
});
