/* js Document   sub.js  */

$(document).ready(function() {
	$('#jsng').hide();
	$('#jsok').show();
	
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'fast',theme:'facebook'});

});

$(function() {
/* alert("test"); */    

	$("a#mbtn1").click(function() { //When trigger is clicked...
		$("ul#subnav1").slideDown('fast').show(); //Drop down the subnav on click
		$("ul#subnav2").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		$("ul#subnav1").hover(function() {
		}, function(){	
			$("ul#subnav1").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});
	});
	
	$("a#mbtn2").click(function() { //When trigger is clicked...
		$("ul#subnav2").slideDown('fast').show(); //Drop down the subnav on click
		$("ul#subnav1").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		$("ul#subnav2").hover(function() {
		}, function(){	
			$("ul#subnav2").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});
	});
	
	/* */
});


