$(function() {

	$('.slider').cycle({
    	speed:  5000, //HOW LONG THE FADE IS
    	timeout: 7500 //HOW LONG THE SLIDE SHOWS
    });

	$("a[rel=lightbox-cats]").fancybox();
	
	$("a#requestBox").fancybox({
		type : 'iframe',
		scrolling: 'no',
		transitionIn : 'none',
		transitionOut : 'none',
		width: 340,
		height: 340
	});
	
	$("a#hintBox").fancybox({
		type : 'iframe',
		scrolling: 'no',
		transitionIn : 'none',
		transitionOut : 'none',
		width: 340,
		height: 340
	});
	
	$("input.ispamyou").hide();
	
	$('div.more_images').hover(
		function() { $(this).find('ul').css('display', 'none').fadeIn('slow').css('display', 'block'); },
		function() { $(this).find('ul').fadeOut(100); }
	);
	
	$('div#catalog_img').hover(
		function() { $(this).find('ul').css('display', 'none').fadeIn('slow').css('display', 'block'); },
		function() { $(this).find('ul').fadeOut(100); }
	);

	$(':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'));
	    }
	  });
	});

});
