<!-- Begin Fancybox Settings -->




/* Settings For Awards Pop Over */
$(document).ready(function() {
/* This is basic - uses default settings */
$("a.awardThumb").fancybox({
				'titleShow'		: false
			});
			
			});
			
			
			
			
			
			
/* Settings For Testimonial Video */
$(document).ready(
               function(){
        $("#video").click(function() {
     $.fancybox({
               'padding'          : 0,
               'autoScale'          : false,
               'transitionIn'     : 'none',
               'transitionOut'     : 'none',
               'title'               : this.title,
               'width'          : 640,
               'height'          : 510,
               'href'               : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
               'type'               : 'swf',
               'swf'               : {
                        'wmode'          : 'transparent',
                    'allowfullscreen'     : 'true'
               }
          });

     return false;
     });
     });

			
			
			
			
/* Settings For Homepage Video */			
$(document).ready(
               function(){
        $("#video").click(function() {
     $.fancybox({
               'padding'          : 0,
               'autoScale'          : false,
               'transitionIn'     : 'none',
               'transitionOut'     : 'none',
               'title'               : this.title,
               'width'          : 640,
               'height'          : 510,
               'href'               : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
               'type'               : 'swf',
               'swf'               : {
                        'wmode'          : 'transparent',
                    'allowfullscreen'     : 'true'
               }
          });

     return false;
     });
     });
<!-- Close Fancybox Settings -->


