$(document).ready(function(){
	
	// Slideshow:
	$("div#slideshow div.tabs ul").tabs("div#slideshow div.panels img", {
		effect: 'fade',
		fadeInSpeed: "slow",
		fadeOutSpeed: "slow",
		rotate: true
	}).slideshow({
		autoplay: true,
		interval: 5000,
		clickable: false
	});
	
	$("div#media div.box", this).click(function(){
		var pageLink = $(this).find('a.readMore').attr('href');
		window.location.href = pageLink;
	});
	
	// Landing page video:
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))){
		$('div#landingvideo').html('<a href="wp-content/uploads/video_iphone.mp4"><img src="wp-content/themes/Jonsters/includes/images/video.jpg" alt="Spela video" /></a>');
	} else if ((navigator.userAgent.match(/iPad/i))){
		$('div#landingvideo').html('<a href="wp-content/uploads/video_ipad.mp4"><img src="wp-content/themes/Jonsters/includes/images/video.jpg" alt="Spela video" /></a>');
	}
	
});
