$(function(){
	

	/*---------------------------------------
	Store Location Tabs
	---------------------------------------*/
	$('.tabs li a').click(function(){
		$('.tabs li.selected').removeClass("selected");
		$(this).parent().addClass('selected');

		var stateHREF	= $(this).attr('href');
		var state		= stateHREF.substr(stateHREF.length-2, 2);

		$('.storeLocations.displayStores').removeClass('displayStores');
		$('#locations' + state).addClass('displayStores');

		//alert($('#Map'+state).val());
		$('#StoreMap').attr('src',$('#Map'+state).val());
		
		sIFR.replace(daxlineBold, {
		  selector: 'h2.line'
		  ,css: [
			'.sIFR-root { color: #0069bc; text-transform: uppercase }'
		  ],wmode: 'transparent'
		});

		return false;
	});

});