/**
 * Created by JetBrains PhpStorm.
 * User: harleym
 * Date: 10/01/12
 * Time: 11:24 AM
 * To change this template use File | Settings | File Templates.
 */
/*
	ad structure:
	div.dfp_adslot > div.dfp_TYPE.dfp_ad + div.dfp_slug
	where TYPE is one of the ad formats:
	mrec, top, side, hammer, promo, etc
*/
$(document).ready(function(){
	var class_prefix = ".dfp_";
	var ad_format_heights = {mrec:250, top: 60, side: 600, hammer:50, promo:100, footer:90, ribbon:200};

	var ads = $('.dfp_adslot');

	// show hidden ad slugs
	for(var n in ad_format_heights){
		$.each($(class_prefix+n, ads), function (){
			if($(this).outerHeight() >= (ad_format_heights[n])){
				$(this).parents('.dfp_adslot').find(class_prefix+"slug").show();
			} else {
				$(this).parents('.dfp_adslot').hide();
			}
		});
	}
});
