function initialize()
{

}

function makeThumbnails(thumbs, wrapper)
{
	$(thumbs).each(function()
	{
		if($(this).height()/$(this).width() > $(wrapper).height()/$(wrapper).width())
		{
			$(this).css('width',$(wrapper).css("width"));
		}
		else
		{
			$(this).css('height',$(wrapper).css("height"));
		} 
	 });
}

function showHighlightBox(width,height)
{
			$.fn.colorbox({href:"#newsletterBox",inline:true,width:width+"px",height:height+"px",opacity:"0.8",scrolling:false,onClosed:function(){setCookie('showHighlightBox',"false",30);}});
}

/*------------------------------------------------------------------------------*/
function setCookie(c_name,value,expiredays)
{
	$.cookie(c_name, value, { path: '/', expires: expiredays });
}
