$(function(){
	
	$("a[rel=lightbox-cats]").fancybox({
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.75
	});
	
	/*----- Fix Search Field */
	$(':input[title]').each(function() {
	  var $this = $(this);
	  if($this.val() === '') {
	    $this.val($this.attr('title'));
	  }
	  $this.focus(function() {
	    if($this.val() === $this.attr('title')) {
	      $this.val('');
	    }
	  });
	  $this.blur(function() {
	    if($this.val() === '') {
	      $this.val($this.attr('title'));
	    }
	  });
	});
	
	$('li.item a').hover(
		function() {
			$(this).find('.quick-info').show();
		},function(){
		$(this).find('.quick-info').hide()
		}
	);

	$('#financing').hover(function(){
		$("#financing", this).stop().animate({width:'150px'}, {queue:false,duration:300});
	}, function() {	
		$("#financing", this).stop().animate({width:'30px'}, {queue:false,duration:300});
	});
	
});
