var kontaktopen = 'close'; $(document).ready(function(){ $('.blockreleasebox').show(); $('.kontaktboxRunner').show(); var name = "#blockRunnerLeft"; var menuYloc = null; menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px"))) $(window).scroll(function () { var offset = menuYloc+$(document).scrollTop(); var height = $("#blockMainInner").height(); height = height - 370; if(offset > height) offset = height; //alert(offset + ' ' + height); $(name).animate({top:offset+"px"},{duration:500,queue:false}); }); $(".kontaktboxRunnerImg").click(function() { if(kontaktopen == 'close'){ $('.kontaktboxRunner').animate({ width: '885px' }, 'slow', function(){ kontaktopen = 'open'; }); $("#opaque").css("filter", "alpha(opacity=60)"); $("#opaque").fadeIn(300); } else{ kontaktopen = 'close'; $('.kontaktboxRunner').animate({ width: '25px' }, 'slow'); $("#opaque").delay(500).fadeOut(300); } }); $(".kontaktboxRunnerInner").hover(function() { $("#opaqueOuter").unbind(); },function(){ $("#opaqueOuter").click(function(){ if(kontaktopen == 'open'){ $('.kontaktboxRunner').animate({ width: '25px' }, 'slow'); $("#opaque").delay(500).fadeOut(300); kontaktopen = 'close'; } }); }); $("#opaqueOuter").click(function(){ if(kontaktopen == 'open'){ $('.kontaktboxRunner').animate({ width: '25px' }, 'slow'); $("#opaque").delay(500).fadeOut(300); kontaktopen = 'close'; } }); $("#opaque").click(function(){ kontaktopen = 'close'; $('.kontaktboxRunner').animate({ width: '25px' }, 'slow'); $("#opaque").delay(500).fadeOut(300); }); $(document).keyup(function(e) { if (e.keyCode == 27) { kontaktopen = 'close'; $('.kontaktboxRunner').animate({ width: '25px' }, 'slow'); $("#opaque").delay(500).fadeOut(300); } // esc }); $('#searchTerm').click(function(){ if($('#searchTerm').val() == 'Suchbegriff eingeben'){ $('#searchTerm').val(''); } }); $('#searchTerm').focusout(function(){ if($('#searchTerm').val() == ''){ $('#searchTerm').val('Suchbegriff eingeben'); } }); $(".blockinfobox").hover(function() { $(this).css("backgroundColor","#e6e6e6"); },function(){ $(this).css("backgroundColor","#f2f2f2"); }); $('.print').click(function(){ $('#printLightbox .kontaktboxRunner').css("width","585px"); }); $("#printLightbox #customForm").attr("id",""); $(".print").colorbox({ width:667,inline:true,href:"#printLightbox",transition:"fade",opacity:"0.6",top:"20px",left:"62px",speed:"700",onLoad:function(){$('#cboxClose').hide();},onComplete:function(){$('#cboxClose').show();} }); });