//homepage slideshow
$(document).ready(function()
      {
        $("#showcase").awShowcase(
        {
        content_width:			620,
        content_height:			588,
        fit_to_parent:			false,
        auto:					true,
        interval:				2200,
        continuous:				true,
        loading:				true,
        tooltip_width:			200,
        tooltip_icon_width:		32,
        tooltip_icon_height:	32,
        tooltip_offsetx:		18,
        tooltip_offsety:		0,
        arrows:					false,
        buttons:				false,
        btn_numbers:			false,
        pauseonover:			true,
        stoponclick:			false,
        transition:				'fade', /* hslide/vslide/fade */
        transition_delay:		300,
        transition_speed:		3000,
        thumbnails:				false
        });
      });

//fancybox pop ups
$(document).ready(function()
  {
      $(".iframe").fancybox({
				'width'				: 640,
				'height'			: 360,
		    'padding': 0,
		    'overlayColor': '#000',
		    'overlayOpacity':0.75,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe'
  			});
  		//Press Images Script	
  		$(".pressSet").fancybox({
		    'padding': 0,
		    'overlayColor': '#000',
		    'overlayOpacity':0.75,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'speedIn': 800,
				'speedOut': 800
  			});
  			
  });
