$(document).ready(function () {
	$('#phone').hover(
		function () {
			$(this).text('877-732-7511 ');
		},
		function () {
			$(this).text('877-PEARL-11');
		});
	$('#privacy-container').hover(
	function () {
		$(this).children('p').addClass('hover');
	},
	function () {
		$(this).children('p').removeClass('hover');
	});
	$('#search').toggle(
	function () {
		$('#search-container').fadeIn('slow');
		return false;
	},
	function () {
		$('#search-container').fadeOut('slow');
		return false;
	});
	// initialize Cufon
	Cufon.replace('h2', {fontFamily: 'Script' });
	Cufon.replace('h3', {fontFamily: 'Caps' });

   	// ajaxy cool stuff here
   	$('#leftcolumn a').click(function() {
   		var href = $(this).attr('href');
   		$('#rightcolumn').fadeOut('slow', function() {
   			$('#rightcolumn').load(href, function() {
   				$('#rightcolumn').fadeIn('slow');
   			});
   		});
   		return false;
   	});
/*   	$('#product_photo_zoom_url').attr('href','/v/vspfiles/photos/AWN775-2.jpg');
   	$('#product_photo_zoom_url').lightBox(); */
   	   	
   	$('#rightcolumn').load('/v/vspfiles/templates/NP-Main/external/selection.htm');

});

