$(function() {
	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});
});

$(document).ready(function(){
	
	// do colorbox
	$('.production').colorbox({width:'760', height:'382', iframe:true});
	$('a[href="http://www.mallardproductions.co.uk/showreel"]').colorbox({width:'668', height:'422', iframe:true});
	
	$('.prodTabs').hide();
	$('#page1').show();
	$('#pagemain').css('height',$('#pagemain').height());
	$('.nextLink').click(function() {
		$(this).parent().parent().fadeOut(200,function(){$(this).next().next().fadeIn(200);});
		return false;
	});
	$('.prevLink').click(function() {
		$(this).parent().parent().fadeOut(200,function(){$(this).prev().prev().fadeIn(200);});
		return false;
	});
	
	$('#newsSummaries').cycle({
		timeout: 8000,
		height: 120
	});
	
});
