jQuery(function (){
	jQuery('.tooltipLink').tipTip({
		defaultPosition: 'right',
		delay: '50'
	});
		
	jQuery('#contentLftUp').find('.tooltipLink').hover(
		function() {
			jQuery('#contentRgt').find('.designExt_show').removeClass().addClass('designExt_hidden');
			
			jQuery('#contentRgt').find('#img' + jQuery(this).attr('id')).css({
				"opacity": 0
			});
			
			jQuery('#contentRgt').find('#img' + jQuery(this).attr('id')).removeClass().addClass('designExt_show');
			
			jQuery('#contentRgt').find('#img' + jQuery(this).attr('id')).stop().animate({
				"opacity": 1
			});
			jQuery('#contentRgt').find('#img0').stop().animate({
				"opacity": 0
			});
			
			jQuery('.viewMoreKitchens').css({
				"opacity": 0
			});
			
			jQuery('.dots').stop().animate({
				"opacity": 0
			});
		},
		function() {
			jQuery('#contentRgt').find('#img' + jQuery(this).attr('id')).stop().animate({
				"opacity": 0
			});
			jQuery('#contentRgt').find('#img0').stop().animate({
				"opacity": 1
			});
			
			jQuery('.viewMoreKitchens').css({
				"opacity": 1
			});
			
			jQuery('.dots').stop().animate({
				"opacity": 1
			});
		}
	);
});
