$(document).ready(function() {
	
	// Default values for input fields
	// *********************************************************************************************************
	$('.value-swap').addClass('blur').focus(function(){ 		
		$(this).removeClass('blur');
		var f = $(this).get(0); 		
		if($(this).val() == f.defaultValue) {
			$(this).val('');
		}
	}).blur(function(){ 		
		var f = $(this).get(0); 		
		if($(this).val() == '') {
			$(this).addClass('blur'); 
			$(this).val(f.defaultValue);
		}
	});
	
	
	// Regular tooltips
	$('a.tooltip').aToolTip({
		xOffset: 		0,							// x Offset
		yOffset: 		20,							// y Offset
		fixed: 			true,
		pos: 			'n'							// Position
	});
	
	// Internet Explorer Helpers
	if($.browser.msie && $.browser.version == 7) {
		$('<div class="clearer"></div>').insertAfter('.clearfix');
	}
});