/**
 * CONTENiT AG
 * (c) 2011
 *  
 * @author Nicolas Sell <nicolas.sell@contenit.de>
 * @date 14-01-2011
 *   
 **/
     
jQuery.noConflict();

jQuery(document).ready(function() {
  jQuery('.socialmedialinks').parent().prepend('<div id="social_title">Social Networks</div>');
  jQuery('.socialmedialinks li:nth-child(3) ~ li').fadeOut(0);
  jQuery('.socialmedialinks li:nth-child(3)').after('<li><a href="javascript:return false;" id="social_weitere">weitere Netzwerke ...</a></li>');
  
  jQuery('#social_weitere').live('click', function() {
     jQuery('.socialmedialinks li:nth-child(4) ~ li').fadeToggle("slow");
     jQuery(this).remove();
  });
  
  jQuery('.container2_6 a[href*="http://www.ecm-blogger.de"]').each(function(item) {
    jQuery(this).parents('.csc-textpic-imagewrap').css("margin-left", "24px");
  });
  
  jQuery('.navidown_menu li.hauptpunkt:last-child').hide();
});

