$(function(){
	init();
});



function init()
{


   $('a[href^=""]').
    	click(function(){
			var rel = $(this).attr('rel');
			var href = $(this).attr('href');

			try
			{
				//track explicitly coded links (matches "tracking_path_to_whatever")
				var classes = $(this).attr('class').split( " " );
				if ( classes != null )
				{
					for ( var x=0; x<classes.length; x++ )
					{
					   var theclass = classes[x];
					   if ( theclass != null && theclass.indexOf("tracking-") == 0 )
					   {
						var trackcode = theclass.substring( theclass.indexOf("tracking-") + 9, theclass.length );
					   	var trackpath = '/' + trackcode.split("-").join("/");
						//alert( 'testing: ' + trackpath );
						pageTracker._trackPageview(trackpath);
					   }
					}
				} 	
				/*
				//track all outbound links
				if ( href.indexOf("://") > 0 )
				{
					var outbound = '/tracking/outbound/' + href.split("://",2)[1];
					//alert('outbound: ' + escape(outbound));
					pageTracker._trackPageview(outbound);
				}
				*/
			}
			catch ( e )
			{
				//do nothing
			}

			return true;		
		});

}


function updateMallLocation( locationid )
{
	var mallurls =    { 
		'beverlycenter'  : 'http://www.shopbeverlycenter.com',
 	   	'cherrycreek'  : 'http://www.shopcherrycreek.com',
		'dolphin'  : 'http://www.shopdolphinmall.com',
		'fairoaks'  : 'http://www.shopfairoaksmall.com',
		'fairlane'	: 'http://www.shopfairlane.com',
		'greatlakescrossing'  : 'http://www.shopgreatlakescrossing.com',
		'internationalplaza'  : 'http://www.shopinternationalplaza.com',
		'macarthur'	 : 'http://www.shopmacarthur.com',
		'northlake'	 : 'http://www.shopnorthlake.com',
		'regencysquare'	 : 'http://www.shopregencysqmall.com',
		'stamford'	: 'http://www.shopstamfordtowncenter.com',
		'stonypoint'  : 'http://www.shopstonypoint.com',
		'sunvalley'	 : 'http://www.shopsunvalley.com',
		'shorthills'  : 'http://www.shopshorthills.com',
		'twelveoaks' : 'http://www.shoptwelveoaks.com',
		'wellingtongreen'  : 'http://www.shopwellingtongreen.com',
		'westfarms'	 : 'http://www.shopwestfarms.com',
		'willowbend'  : 'http://www.shopwillowbend.com',
		'woodfield'	 : 'http://www.shopwoodfield.com',
		'partridgecreek' : 'http://www.shoppartridgecreek.com' 
	};
//alert("new location: " + locationid + " " + mallurls[locationid]);

	if ( locationid != "" && locationid != "default" )
	{
		//show
		$("#ebulletin_link").attr('href', mallurls[locationid] + "/registration/");
		$("#ebulletin_container").removeClass("hide");
	}
	else
	{
		//hide
		$("#ebulletin_container").addClass("hide");
	}
}
