$(document).ready(function(){

	// Carousel
	$('#carousel').cycle({ 
	    fx: 'fade',
	    timeout:  5000
	});
	
	//hide 'x' initially
	$("#enticer_right .clear_button").hide();
    
    //Hide label and focus input when label clicked
	$('#enticer_right label').click(function() {
		$(this).hide();
		$('#enticer_right #first input.text').focus();
	});
    
    //hide/show title/ 'x' when clicking input
    $('#enticer_right input.text').blur(function() { 
	if( $('#enticer_right input.text').val() == '' ) {
    	$('#enticer_right label').show();
    	$("#enticer_right .clear_button").hide();
	}
	}).focus(function() {
    	$('#enticer_right label').hide();
    	$("#enticer_right .clear_button").show();
	});
    
    //hide 'x', show title when clicking 'x', reset filter
    $("#enticer_right .clear_button").click(function(){
    	$('#enticer_right input.text').val('');
    	$('#enticer_right label').fadeIn();
    	$("#enticer_right .clear_button").hide();
    
	});
	
	//hide 'x', show title when clicking 'x', reset filter
    $("#enticer_right .clear_button").click(function(){
    	$('#enticer_right label').fadeIn();
    	$("#enticer_right .clear_button").hide();
    
	});
	
	// Fancybox
	$("a.enlarge").fancybox();

});
