//****************Jquery for Video Path and Player skins****************

// For use with Fancy Player (FancyBox and FlowPlayer mash-up) -- Does not work with FancyBox 1.3.0 ---
// var videopath = "http://a836.g.akamai.net/7/836/35746/v0001/manpower.download.akamai.com/35746/Webinar%20Series/";
//var swfplayer = videopath + "flowplayer-3.1.1.swf";



//****************Jquery for Fancy Box****************


$(document).ready(function() {


$("a#single_terms").fancybox({
	'hideOnContentClick': false,
	'width':700,
                'type': 'iframe'
});

$("a#single_privacy").fancybox({
	'hideOnContentClick': false,
	'width':700,
                'type': 'iframe'
});


//New selector for v1.3.0

$("a.singleImage").fancybox({
	'hideOnContentClick': true,
                'titleShow': false
	});


$("a.inlineVideo").fancybox({
	'hideOnContentClick': false
	});
	
$("a.inline").fancybox({
	'hideOnContentClick': false,
                'width': 700,
	'height': '85%',
	'autoScale' : false,
	'transitionIn': 'none',
	'transitionOut': 'none',
	'type': 'iframe'
	});

$("a.video_linkzz").fancybox({
	'hideOnContentClick': false,
                'width': 700,
	'height': '85%',
	'autoScale' : false,
	'transitionIn': 'none',
	'transitionOut': 'none',
	'type': 'iframe'
	});


$("#autostart").fancybox({
  'width': 275,  //or whatever
  'height': 230,
  'type': 'iframe' // see this?
 });

$('#autostart').trigger('click');

});

