$(document).ready(function(){										 
	
	//External
	$('a[@rel$="external"]').click(function(){this.target="_blank";});											 
	$("#logo").css('cursor', 'pointer').click( function() { window.location = './';});
	
	//PNG Background fix for navigation
	$("#banner").prepend("<div id=\"nav-bg\"></div>");

	//Cmxform
	if(jQuery.browser.mozilla) {
		$('form.cmxform').hide().find('label:not(.nocmx)').each(function(){
			var $labelContent = $(this).html();
			var $labelWidth = $(this).css('width');
			$(this).empty();
			$(this).append('<span style="display: block; width: '+$labelWidth+';">');
			$(this).prepend('</span>');
			$(this).css('display', '-moz-inline-box');
			$(this).find('span').html($labelContent);
			$('form.cmxform').show();
		});
	};	
	
	// JQUERY Input rollover
	$('form.cmxform input.send').css('cursor', 'pointer').hover(function() {$(this).addClass('sendhover');}, function() {$(this).removeClass('sendhover');});

});