$(document).ready(function() {
	
	$('div#content select').change(function() {
		var txt = $('div#content select').val();
		$('<div id="overlay" />').appendTo('body').fadeIn(400);
		
		$.post('/', {sort : txt}, function() {		
	   		window.location = 'http://www.realgirlfights.org/';
		});
	});
	
	$('p.bookmark').click(function() {

		if (window.sidebar) {
			window.sidebar.addPanel('Real Girl Fights!', 'http://www.realgirlfights.org/', '');
		} else if (window.opera && window.print) {
			var elem = document.createElement('a');
			elem.setAttribute('href', 'http://www.realgirlfights.org/');
			elem.setAttribute('title', 'Real Girl Fights!');
			elem.setAttribute('rel', 'sidebar');
			elem.click();
		} else if (document.all) {
			window.external.AddFavorite('http://www.realgirlfights.org/', 'Real Girl Fights!');
		}
		
		return false;
	});

});
