// dom js

// sifr stuff

$(document).ready(function(){

// accordion stuff
//getter

$('#accordion').accordion({header:".acc_header",autoHeight:false});

// tooltip stuff
$("#store a").tooltip({
	track: true,
	delay: 1,
	showURL: false,
	opacity: 1,
	fixPNG: true,
	showBody: " - ",
	extraClass: "pretty fancy",
	top: -15,
	left: 5
});
// map stuff 
$('#open_map').each(function(link) {

    link.onclick = function(){

    window.open(this.href,'name','options');

    return false;

  };

});
// ux stuff
// newsletter form 


$('#email').focus(function(){
if($(this).val() == "email address"){
	$(this).val("") ;
}
$('#email').blur(function(){
if($(this).val() == ""){
	$(this).val("email address"); 
}
});
});

});