// JavaScript Document

$(document).ready(function() {
	$('ul.dropdown').supersubs({ 
            minWidth:    12,   // minimum width of sub-menus in em units 
            maxWidth:    27,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
	}).superfish();
	$(".tweet").tweet({
            username: "hmranch",
            join_text: "auto",
            avatar_size: 32,
            count: 1,
            auto_join_text_default: "",
            auto_join_text_ed: "",
            auto_join_text_ing: "",
            auto_join_text_reply: "",
            auto_join_text_url: "",
            loading_text: "loading tweets..."
        });
	$('.photos').addClass('gallery_demo'); // adds new class name to maintain degradability
		$('ul.gallery_demo').galleria({
			history   : false, // deactivates the history object for bookmarking, back-button etc.
			clickNext : false, // helper for making the image clickable. Let's not have that in this example.
			insert    : '#current_image',
			onImage   : function() { $('.nav').css('display','block'); } // shows the nav when the image is showing
		});
	jQuery('.photos').jcarousel();
	$(".popup").lightBox();
	$("#itineraries").tabs();
});