$(document).ready(function(){
	
	// external links
	$("a[@rel='external']").click(function() {
		return !window.open($(this).attr("href"));
	});
	
	// fade in messages
	/*
	$('.success').hide();
	$('.success').fadeIn(500);
	$('#errorMsg p').hide();
	$('#errorMsg p').fadeIn(1500);*/
	
	/*$('#product-menu-navigation').accordion({
		autoheight: false,
		active: '.selected',
		selectedClass: 'active',
		alwaysOpen: true, 
	    //active: true, 
	    header: 'h2', 
	    navigation: true,
	    //event: 'mouseover', 
	    fillSpace: false
	    //animated: 'easeslide' 
	}).bind("change.ui-accordion", function(event, ui) {
		jQuery('&lt;div&gt;' + ui.oldHeader.text() + ' hidden, ' + ui.newHeader.text() + ' shown&lt;/div&gt;').appendTo('#log');
	});*/
	
	$('.close-message').click(function(){
		$('#successMsg').fadeOut(700);
		return false;
	});
	
});
