jQuery(document).ready(function() {

	jQuery("#video-pop").focus(function() {jQuery(this).val('');});
	
	//Popup Video Source with controls
	var src = "http://mojomotor.com/index.php/global/video2";
	$('#video-holder').click(function(){
	jQuery('<iframe src="' + src + '" height="380" width="660" style="border:0">').modal({
		closeHTML:"",
		containerCss:{
			backgroundColor: "#e4eff4",
			height: 380,
			padding: 0,
			width: 660,
			overflow: 'hidden'
		},
		position: ['2%'],
		overlayClose:true
		});
	});
});
