jQuery(document).ready(function() {
	
	jQuery("a[rel='external']").each( function(i) { 
			jQuery(this).attr("target","_blank");
		});
		
		$("a.thickbox").fancybox();
	
	jQuery(".signup input.text").focus( function() { 
		var old_val = jQuery(this).val();
		jQuery(this).val('');
	});
	jQuery(".signup input.text").blur( function() { 
		//var old_val = jQuery(this).val();
		jQuery(this).val(old_val);
	});
	
	jQuery(".product-full .longtext").hide();
	
	$('.longtext-show').click(function() {
		jQuery(".product-full .longtext").show('fast');
		$(this).hide();
		return false;
	}
		
	)
	
});