// SLIDER
$(function() {
	$('#featured_content_slider').after('<div id="featured_content_slider_nav">').cycle({
		fx: 'scrollLeft',
		speed: 1000,
		timeout: 9000,
		activePagerClass: 'activeSlide',
		pager: '#featured_content_slider_nav',
		pagerAnchorBuilder: function(idx, slide) {
		return '<li><a href="#"><img src="http://iamhavoc.de/wp-content/themes/havoc/images/transparent.png" /></a></li>';
		}
	}); 
});	
// SLIDER END
// SIDEBAR
$(document).ready(function () {
	$('.toggle').click(function () {
		var text = $(this).next('li');
		if (text.is(':hidden')) {
			text.slideDown('200');		
		} else {
			text.slideUp('200');
		}	
	});
});
// SIDEBAR END
// JS FAVORITE
function addfav()
   {
   if (document.all)
      {
      window.external.AddFavorite
      ("http://www.wiamhavoc.de","mhvc - Musik und so...")
      }
   }
// FAVOURITE END
// SHOW MORE
function showMore(id) {
	var id = id;
	$('#front_page_content-' + id).slideToggle('slow');
}
// SHOW MORE END
