;(function($){

	$(function(){
		
		$('#searchbox .button').attr('value', 'Caută!');
		$('#search_query').attr('value', 'Ce ai vrea să dăruieşti?');
		
		$('#search_query').focus(function(){
			if ($(this).attr("value") === "Ce ai vrea să dăruieşti?") {
				$(this).attr("value", "");
			}
		}).blur(function(){
			if ($(this).attr("value") === "") {
				$(this).attr("value", "Ce ai vrea să dăruieşti?");
			}
		});
		
		$('#shopping_cart a').text('Cadourile mele');

		var hoverIntent = null;
		var hoveredItem = 0;
		
		$('#showcase li img').css({'width': '120px', 'height': '186px'});
		
		$('#showcase li:nth-child(2) img').css({'width': '150px', 'height': '232.5px'});
		$('#showcase li:nth-child(3) img').css({'width': '180px', 'height': '280px'});
		$('#showcase li:nth-child(4) img').css({'width': '150px', 'height': '232.5px'});
		
		$('#showcase ul').css({'width': '1470px'});
		
		$('#categories_block_left a').attr('title', '');

		$('#categories_block_left div > ul > li').mouseenter(function(){
			
			$(this).addClass('hovered');
			
			hoveredItem = $('#categories_block_left div > ul > li').index(this);
			hoverIntent = setTimeout(function(){

				$('#showcase li img').stop().animate({'width': '120px', 'height': '186px'});

				$('#showcase li:nth-child(' + hoveredItem + ') img').stop().animate({'width': '150px', 'height': '232.5px'});
				$('#showcase li:nth-child(' + (hoveredItem + 1) + ') img').stop().animate({'width': '180px', 'height': '280px'});
				$('#showcase li:nth-child(' + (hoveredItem + 2) + ') img').stop().animate({'width': '150px', 'height': '232.5px'});

				if (hoveredItem < 3) {
					$('#showcase').stop().scrollTo('0', 400);
				} else if (hoveredItem > 6) {
					$('#showcase').stop().scrollTo('95%', 400);
				} else {
					$('#showcase').stop().scrollTo('50%', 400);
				}

			}, 200);

		}).mouseleave(function(){
			$(this).removeClass('hovered');
			clearTimeout(hoverIntent);
		});
		
		var hoveredImage = 0;
		
		$('#showcase li').mouseenter(function(){
			hoveredImage = $('#showcase li').index(this);
			$('#categories_block_left li:nth-child(' + (hoveredImage+1) + ')').addClass('hovered');
			
			hoverIntent = setTimeout(function(){

				if (hoveredImage == 6) {
					if ($('#showcase').scrollLeft() < 500) {
						$('#showcase').stop().scrollTo('95%', 400);
					}
				}
				if (hoveredImage == 3) {
					if ($('#showcase').scrollLeft() > 0) {
						$('#showcase').stop().scrollTo('0', 400);
					}
				}
				$('#showcase li img').stop().animate({'width': '120px', 'height': '186px'});
				$('#showcase li:nth-child(' + hoveredImage + ') img').stop().animate({'width': '150px', 'height': '232.5px'});
				$('#showcase li:nth-child(' + (hoveredImage + 1) + ') img').stop().animate({'width': '180px', 'height': '280px'});
				$('#showcase li:nth-child(' + (hoveredImage + 2) + ') img').stop().animate({'width': '150px', 'height': '232.5px'});
				
			}, 200);
			
		}).mouseleave(function(){
			$('#categories_block_left li:nth-child(' + (hoveredImage+1) + ')').removeClass('hovered');
			clearTimeout(hoverIntent);
		});
				
	});
	
})(jQuery);
