jQuery(document).ready(function(){
	jQuery('.wrap').masonry();
	
	var nInt = jQuery("div#interstitial").length;

	if (nInt > 0) {
	
		var COOKIE_NAME = 'red17_interstitial';
		
		var valorCookie = jQuery.cookie(COOKIE_NAME);
		
		if (valorCookie == null) {
			jQuery("div#interstitial").show();
			var date = new Date();
			date.setTime(date.getTime() + (2 * 60 * 60 * 1000)); //mseg - 2 horas
			jQuery.cookie(COOKIE_NAME, 'mostrado', {
				path: '/',
				expires: date
			});
			window.setTimeout(function(){
				jQuery('#interstitial').remove();
			}, 5000);
			
		}
		else {
			jQuery('#interstitial').remove();
		}
	}
	
});