$(document).ready(function() {
			
	$('.notice').fadeIn('slow').fadeTo(2000, 1).fadeOut('slow');
	if($('#lifestyle')){
		$.getScript("/common/js/jquery.cycle.all.min.js", function(){
			$('#lifestyle').cycle({ 
				fx: 'fade',
				timeout: 5000,
				speed: 2500,
				pause: 1
			});
		});

	}
	
	$('#filter_collapse_toggle').click(function(){
		$('#filter_collapse').slideToggle('slow');
	});
	
	//sort criteria tooltips
	$('.sort_criteria select').qtip({
		content: "Press SHOW RESULTS to update your search",
		show: { when: { event: 'change' } },
		hide: { when: { event: 'unfocus' } },
		position: {
			target: $('#show_results_btn'),
	    	corner: {
	    		target: 'bottomMiddle',
	    		tooltip: 'topMiddle'
	    	}
	   },
	   style: {
	   		border: {
				width: 5,
				radius: 5
			},
			background: '#ffffff',
			padding: 10,
			textAlign: 'center',
			tip: true,
			name: 'red'
	   },
	   api: { beforeShow: revealoptions  }

	});
	
	//slide down the filter options if they're hidden
	function revealoptions()
	{
		el = $('#filter_collapse');
		if(el.css('display')=='none')
		{
			el.slideToggle('slow');
		}
	}
	
});

