// initialise plugins jQuery(function(){ jQuery('ul.sf-menu').superfish({ delay: 100, pathClass: 'current', speed: 'fast' }); }); function switch_img(img_id, total){ if(!$("#foto"+img_id).hasClass("displayed")){ $("#foto"+img_id).css("opacity", "0"); $(".rooms_image").css("z-index", "8"); $(".enlarge_image").css("display", "none"); $(".displayed").css("z-index", "9"); $("#foto"+img_id).css("z-index", "10"); $("#foto"+img_id).animate({opacity: 1.0}, 500, function(){ $("#foto"+img_id).css("z-index", "10"); $(".displayed").removeClass("displayed"); $("#foto"+img_id).addClass("displayed"); $("#enlarge"+img_id).css("opacity", "0"); $("#enlarge"+img_id).css("display", "block"); $("#enlarge"+img_id).animate({opacity: 1.0}, 300, function(){}); }); } } var scrollpane; $(document).ready(function() { scrollpane = $('#obsah_in').jScrollPane( {scrollbarWidth:10, scrollbarMargin:10, verticalDragMinHeight: 27, verticalDragMaxHeight: 27 } ); $("#enlarge").click(function () { var api = scrollpane.data('jsp'); api.destroy(); $("#close").css("display", "none"); $("#enlarge").css("display", "none"); $("#obsah_in").animate({ width: '776' }, 1000, function(){ $("#close").css("display", "block"); }); $("#obsah").animate({ width: '806' }, 1000, function(){ scrollpane = $('#obsah_in').jScrollPane( {scrollbarWidth:10, scrollbarMargin:10, verticalDragMinHeight: 27, verticalDragMaxHeight: 27 } ); }); }); $("#close").click(function () { var api = scrollpane.data('jsp'); api.destroy(); $("#close").css("display", "none"); $("#obsah_in").animate({ width: '350' }, 1000, function(){ $("#enlarge").css("display", "block"); }); $("#obsah").animate({ width: '380' }, 1000, function(){ scrollpane = $('#obsah_in').jScrollPane( {scrollbarWidth:10, scrollbarMargin:10, verticalDragMinHeight: 27, verticalDragMaxHeight: 27 } ); }); }); function gallery(){ $("#close_hp").css("display", "none"); $("#enlarge_hp").css("display", "none"); var api = scrollpane.data('jsp'); api.destroy(); if ($("#obsah").width() < 450 || $("#obsah").height() < 300) { $('#hp_text').css({display:'none'}); $("#obsah").animate({ top:137, bottom: '40', left: '0', width: '820', height: $('#centered').height()-152-40 }, 1000, function(){ scrollpane = $('#obsah_in').jScrollPane( {scrollbarWidth:10, scrollbarMargin:10, verticalDragMinHeight: 27, verticalDragMaxHeight: 27 } ); }); $("#obsah_in").animate({ width: '790', height: $('#centered').height()-152-40-40 }, 1000, function(){ $("#close_hp").css("display", "block"); }); } else { vyska_obsahu = $('#centered').height() - 60 - 290; $('#hp_text').css({display:'block'}); $("#obsah").animate({ bottom:'40', left: '0', width: '380', top: vyska_obsahu, height: '292' }, 1000, function(){ scrollpane = $('#obsah_in').jScrollPane( {scrollbarWidth:10, scrollbarMargin:10, verticalDragMinHeight: 27, verticalDragMaxHeight: 27 } ); }); $("#obsah_in").animate({ width: '350', height: '252' }, 1000, function(){ $("#enlarge_hp").css("display", "block"); }); } } /**/ $("#enlarge_hp").click(function () { gallery(); }); $("#close_hp").click(function () { gallery(); }); }); // end document ready