$(document).ready(function(){
	$('input').focus(function(){
		if($(this).attr('rel')==$(this).val()){
			$(this).val('');
		}
	});
	$('input').blur(function(){
		if($(this).val()==''){
			$(this).val($(this).attr('rel'));
		}
	});
	
	$('textarea.notes').focus(function(){
		if($(this).attr('rel')==$(this).val()){
			$(this).val('');
			$(this).css('color','#000');
			$(this).css('font-style','normal');
		}
		
	});
	$('textarea.notes').blur(function(){
		if($(this).val()==''){
			$(this).css('color','#636363');
			$(this).css('font-style','italic');
			$(this).val($(this).attr('rel'));
		}
	});
	
	
	$('.featured-product').each(function(){
	});
	
	$("a[rel*='external']").each(function() { 
		this.target = '_blank';
	});
	
	$('#featured-product-container').cycle({
		fx: 'fade',
		speed: 1500, 
		timeout: 12000
	});

	$('#brands').cycle({
		fx: 'fade',
		speed: 1500, 
		timeout: 5000
	});
	
	$('#enlargeproductimage').fancybox({
		'showNavArrows' : true
	});

});

