// JavaScript Document

var contactform = 
{
	init: function()
	{
		if(!NiftyCheck()) {
			return;
		}
		Rounded("div#contactForm","all","#FFFFFF","#DDDDDD");
	}
};

var bigblack = 
{
	init: function()
	{
		if(!NiftyCheck()) {
			return;
		}
		Rounded("div#bigBlack","all","#FFFFFF","#000000");
	}
};

var redbox = 
{
	init: function()
	{
		if(!NiftyCheck()) {
			return;
		}
		Rounded("div#redBox","all","#FFFFFF","#7b0e1b");
	}
};

var smallredbox = 
{
	init: function()
	{
		if(!NiftyCheck()) {
			return;
		}
		Rounded("div#smallredBox","all","#FFFFFF","#7b0e1b");
	}
};

var popupBoxCorners = 
{
	init: function()
	{
		if(!NiftyCheck()) {
			return;
		}
		Rounded("div.popup","all","#FFFFFF","#CCCCCC","border #666666");
	}
};