$(document).ready(function() {

	$(window).bind("unload", function() {
		$('div.content').slideDown('slow');
	});

	$('a.slide').each(function() {
		$('div.content').slideDown('slow');
	});

	$('a.slide').click(function(event) {
		url=$(this).attr("href");
		event.preventDefault();
		$('div.content').slideUp('slow', function (){
			location.href=url;
		});
	});
	
	$('div.gall_frame').each(function (){
		$(this).bind("contextmenu", function(e) {
		e.preventDefault();
	});
	
	});

	

});


