$(function(){

var YIPopUp = 'yi-cookie';
$go = $.cookie(YIPopUp);
if ($go == null) {
        $.cookie(YIPopUp, 'session-header-id-00', { path: '/', expires: 6 });
		$("#autostart").fancybox({ 
		 'padding'        : 0, 
		 'autoScale'      : false, 
		 'transitionIn'   : 'fade', 
		 'transitionOut'  : 'fade', 
		 'width'          : 764, 
		 'height'         : 431,
		 'overlayOpacity' : 0.75,
		 'overlayColor'   : '#000',
		 'showCloseButton': true,
		 'type':         'iframe' 
		}).trigger('click');
}

});

function fancyBoxClose(){
    $("#JqPostForm").load(function(){
        $.fancybox.close();
});

}
