$(document).ready(function(){
	
	/* SEARCH FIELD */
	var clearMePrevious = '';
	
	// clear input on focus
	$('.field-search').focus(function(){
		if($(this).val()==$(this).attr('title')){
			clearMePrevious = $(this).val();
			$('#field-search').css('color','#000000');
			$(this).val('');
		}
	});

	// if field is empty afterward, add text again
	$('.field-search').blur(function(){
		if($(this).val()==''){
			$(this).val(clearMePrevious);
			$('#field-search').css('color','#bebebe');
		}
	});
	
	/* HOMEPAGE BANNER ROTATOR */
	$('.banner-home') 
	.before('<div id="pagination-banners">') 
	.cycle({ 
	    fx:     'fade', 
	    speed:  'slow', 
	    timeout: 6000, 
	    pager:  '#pagination-banners',
	    pagerAnchorBuilder: function(index,el){
			return '<a></a>';
		}
	});

	/* EZPZ TOOLTIP */
	$(".tooltip-target").ezpz_tooltip({
		contentPosition: 'rightStatic',
		stayOnContent: true,
		offset: -100
	});

});
