jQuery(document).ready(function() {
	

	$("a.see-whats-included").fancybox({
		'width'				: '90%',
		'height'			: '80%',
        'autoScale'     	: true,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	

	$("a.video").fancybox({
		'width'				: '100%',
		'height'			: '100%',
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'swf',
        'autoScale'     	: false
	});

	
 $("a.email").each(function(index) {
    this.href = "mailto:?subject=Standards Plus Link&body=" + document.URL;
  });
	
 $("a.print").each(function(index) {
    $( this ).bind ("click", function(){
      window.print();
    });    
  });
  
  
  
});

