// giZ on gizstyle.com jQuery implementation ´¯`·.¸¸.*

//ACTIONS

$(document).ready(function(){
	$(".loader2").click(function(){
	$(this).fadeOut(1000);
	$("#column2_cont").fadeIn(1000);
	});
	
	$(".cd-case").click(function(){
	$(".artist-badge:visible").slideUp("slow");
	$(this).children(".artist-badge").slideToggle("slow");
	});
	
});

$(window).load(function(){
	$(".loader2").fadeOut(1000);
	$("#column2_cont").fadeIn(1000);
});