$(document).ready(function(){
	
	$('input.hamingtion').attr("value", "gelb").parent('div.ham').hide();

	$('#social a').mouseover(function(){
		$(this).children('img').attr('src', "assets/templates/makabu/img/"+$(this).children('img').attr('rel')+"-hover.gif");
	}).mouseout(function(){
		$(this).children('img').attr('src', "assets/templates/makabu/img/"+$(this).children('img').attr('rel')+".gif");
	});
	
	$('#disco a').mouseover(function(){
		$(this).children('img').css('position','relative').animate({
			width:200,
			left:-32
		});
		$(this).next('h2').fadeIn();
		$(this).next('h2').next("p").fadeIn();
	}).mouseout(function(){
		$(this).children('img').animate({
			width:120,
			left:0
		});
		$(this).prevAll('p').fadeOut();
		$(this).prevAll('h2').fadeOut();
	});
	
	$('a[rel="lightbox"]').lightBox();
	
});
