$(document).ready(function(){ $('.smallevent').bind('mouseover mouseout',function(){ $(this).toggleClass('smallevent_darkgrey'); }); $('.events_list_bit_2').live('mouseover mouseout',function(){ $(this).toggleClass('events_list_bit_hover'); }); $('.smallcom blog_small').bind('mouseover mouseout',function(){ $(this).toggleClass('smallevent_darkgrey'); }); $('.fb_iframe_widget').bind('mouseover mouseout', function(){ $(this).toggleClass('fb_iframe_widget_hover'); }); $('.widget_grey').click(function(){ var theone = $(this).next(); var headid = $(this).parent().attr('id'); if(theone.css('display') == "none"){ $.get('/php/include/functions/side_openclose.php?mode=open&id=' + headid, function(data){ if(data == 'Success') theone.slideDown('slow'); else alert(data); }); } else{ $.get('/php/include/functions/side_openclose.php?mode=close&id=' + headid, function(data){ if(data == 'Success') theone.slideUp('slow'); else alert(data); }); } }); $('.side_widget').each(function(){ var theone = $(this); $.get('/php/include/functions/side_openclose.php?mode=ask&id=' + theone.attr('id'), function(data){ if(data == "open") theone.children('.side_widget_openclose').show(); else theone.children('.side_widget_openclose').hide(); }); }); $('#footer_fb_share').click(function(){ window.open("http://www.facebook.com/sharer.php?u=" + encodeURIComponent(window.location.href) + "&t=" + encodeURIComponent(document.title),'fb_sharer','width=626,height=436'); return false; }); $('#footer_twitter_share').click(function(){ window.open("http://twitter.com/home?status=" + encodeURIComponent("Geht end ab: " + window.location.href),'twitter_sharer','width=1069,height=600'); return false; }); });