$(document).ready(function() {

	
	$('.back_to_top').bind('click', function() {
		$.scrollTo( "#top", 900);return false; 
	}); 
	
	$('#tombolc').bind('click', function() {
		$('#coba').slideToggle("fast"); 
		if ($(this).hasClass('tombola')) {
			$(this).removeClass('tombola');
			$(this).addClass('tombolb');
			} else {
			$(this).addClass('tombola');
			$(this).removeClass('tombolb');
			} 
		return false;
	}); 
	

});