$(document).ready(function(){



	$('#coming_soon_cycle').cycle({ 
		fx:     'scrollLeft', 
		speed:  'slow', 
		fit: 0,
		timeout: 6000,
//		containerResize: 1,
//		next:   '#next', 
//		prev:   '#prev',
		pager:  '#comingNav', 
   	pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#">&#8226; &nbsp;</a></li>';		
		}  
	});

	//$(".top-drawer_page").hide();

	$("#drawerToggle").click(function() {
		if ($(this).hasClass('hidden')){
			$(this).removeClass('hidden').addClass('visible');
			$("#top-nav-artists").removeClass('hidden').addClass('visible');
			$(".top-drawer").animate({ "top": 0 }, 800);
			$("a#top-nav-artists").animate({ "bottom": -8, "backgroundColor": "#1A2639" }, 500);
		} else {
			$(this).removeClass('visible').addClass('hidden');
			$("#top-nav-artists").removeClass('visible').addClass('hidden');
			$(".top-drawer").animate({ "top": -411 }, 800);
			$("a#top-nav-artists").animate({ "bottom": 0, "backgroundColor": "#1d7872" }, 500);
			
		}
		return false;
	});
	
	$("#top-nav-artists").click(function() {
	
		if ($(this).hasClass('hidden')){
			$(this).removeClass('hidden').addClass('visible');
			$("#drawerToggle").removeClass('hidden').addClass('visible');
			$(".top-drawer").animate({ "top": 0 }, 800);
			$("a#top-nav-artists").animate({ "bottom": -8, "backgroundColor": "#1A2639" }, 500);
		} else {
			$(this).removeClass('visible').addClass('hidden');
			$("#drawerToggle").removeClass('visible').addClass('hidden');
			$(".top-drawer").animate({ "top": -411 }, 800);
			$("a#top-nav-artists").animate({ "bottom": 0, "backgroundColor": "#1d7872" }, 500);
		}
		return false;
	});
	
						
        
}); //doc ready
