﻿var MetroGnomes = {}; // Namespace

MetroGnomes.FlashBackground = {
	init: function(){
		//create container for flash bkg
		$(".page").before('<div id="flashBkg"></div>');
		//add swf to container
		var FO = { movie: "/UI/Flash/bg.swf", width: "1920", height: "1270", majorversion: "8", build: "0", xi: "true", wmode: "transparent" };
		UFO.create(FO, "flashBkg");	
	}
};

MetroGnomes.Utils = {
	jsCheck: function(){
		$("body").addClass("jsEnabled");
	},
	Watermark: function(){
		$("input[type='text'],textarea").each(function(){
			$(this).watermark($(this).attr("title"));
		});
		
	},
	init: function(){
		MetroGnomes.Utils.jsCheck();
		MetroGnomes.Utils.Watermark();
	}
};

$(document).ready(function(){
	MetroGnomes.FlashBackground.init();
	MetroGnomes.Utils.init();
});
