//jQuery.noConflict();

/**
 * DOM ready
 */
$(document).ready( function() {
	/**
	 * Add a tooltip
	 */
	$('.layerLink').cluetip({
		cluetipClass: 'jtip',
		dropShadow: true, 
		positionBy: 'mouse',
		showTitle: false,
		local: true,
//		sticky: true,
//		closePosition: 'top',
		arrows: true
	});
	$('.search-input').focus( function () {
		$(this).attr('value', '');
	});
});



