function gamePopup() {
	document.getElementById('findmeiying').onclick = function() {
		window.open(this.href, '', 'width=800, height=600, resizable=no, location=no, scrollbar=no, status=no, titlebar=no, toolbar=no, directories=no, fullscreen=no');
		return false;
	}
}

function playVideo() {
	$('#clips li a').bind('click', function() {
		var clipNum = $(this).attr('rel');
		openOverlay(clipNum);
		return false;
	});
}

function trackBoxart() {
	$('#boxart area').bind('click', function() {
		var tracking = $(this).attr('class');
		sCode.trackOutboundClickToBuy(this.href, tracking);
		window.open(this.href, '', '');
		return false;
	});
}

// OverlayPlayer config
feedUrl = "http://www.sonypictures.com/previews/homevideo/thekaratekid.xml"; 
autocloseToggle = true; 
singlevideoToggle = false; 

// Share Config
share.tracking = true;
share.url = 'http://www.sonypictures.com/homevideo/thekaratekid/';
share.title = 'The Karate Kid';
share.delicious.title = 'The Karate Kid';
share.tweet = 'Own The Karate Kid on Blu-ray and DVD October 5th!  Visit the site! http://spe.com/ekvps';
share.description = "When 12-year-old Dre Parker&#39;s mother&#39;s latest career move has landed him in China he is left with no friends in a strange land. Dre has nowhere to turn but maintenance man Mr. Han, who is secretly a master of kung fu. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.";

// Social bookmarking function
function sharethis() {
	if(document.getElementById('share')) {
		var links = document.getElementById('share').getElementsByTagName('a');
		for (var i=0; i<links.length; i++) {
			var link = links[i];
				link.onclick= function() {
					share.send(this.getAttribute('rel'));	
					return false;
				}
			
		}
	}
}

if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1)){
            window.location = 'http://www.karatekid-themovie.com/iphone/';
}else if(navigator.userAgent.indexOf('iPad') != -1) {
            window.location = 'http://www.karatekid-themovie.com/ipad/';
}


addLoadEvent(function (){sharethis()});
//addLoadEvent(gamePopup);
addLoadEvent(playVideo);
addLoadEvent(trackBoxart);

