// JavaScript Document
$(document).ready(function() {
			$("a.fancypopup").fancybox({
									   
   			 });  
  
  			$("a.fancyfreegift").fancybox({
									   'frameWidth': 800, //frameWidth = Default width for iframed and inline content
                						'frameHeight': 150 //frameHeight = Default height for iframed and inline content
   			 });
  
  			$("a.iframe").fancybox({
				'hideOnContentClick': true,
				'overlayOpacity':	0.90,
				'frameWidth':	800,
        		'frameHeight':	600
			});

  
});  