/*
 * STP-OOMPH.com JavaScript
 * 
 */

$(document).ready(function() {

	// init flowplayer if 'video-player' found in document	
	if ($('#video-player').length > 0) {
		flowplayer('video-player', '/swf/flowplayer.commercial-3.0.7.swf',  { 
		
		// Licences: Needed to remove Flowplayer logo from player
		// key: '@9091e1adb27a704e8f6',  STP-Oomph.com Licence. Comment out when testing in Staging
		   key: '#@9091e1adb27a704e8f6',  <!-- Staging.STP-Oomph.com Licence. Comment out when going Live
							
			clip:{ 
				url: '/swf/vs-competition.flv', 
				autoPlay: false  
			},
								
			canvas: {backgroundImage: "images/video.gif"},
		
			plugins: {
		   		controls: {
			   		borderRadius: '23',
		      		progressColor: '#ff0000',
		      		bufferGradient: 'none',
		      		sliderColor: '#9d0104',
		      		timeColor: '#fff547',
		      		borderRadius: '0px',
		      		buttonColor: '#880104',
		      		sliderGradient: 'none',
		      		backgroundColor: '#990000',
		      		durationColor: '#ffffff',
		      		buttonOverColor: '#ff0000',
		      		bufferColor: '#880104',
		      		backgroundGradient: 'medium',
		      		progressGradient: 'medium',
		   			opacity:1.0
		   		}
			}						 
		}); 	
	}

	// open a link in a new window if it has class='external' attached to it
 	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
});