var modmix = {
	init: function() {
		
		//setup mouse events
		$("#add_event_a").click(function() {
			if($("#event_add_form_a").is(":hidden")) {
				$("#event_add_form_a").fadeIn(500);
			} else {
				$("#event_add_form_a").fadeOut(500);
			}
		});
		
	    
	    
	    
		
		
	}
	
	
}

jQuery(document).ready(function() {
	modmix.init();
});




function create_buzz_window(content) {
    var divId = createNewWindow(400, 350, 454, 220);
    document.getElementById('windowContent'+divId).innerHTML = '<div style="padding-top:30px;padding-left:20px;width:250px;font-family:Arial;">'+content+'</div>';
}

function get_buzz(post_id) {
    $("#buzz_window_"+post_id).load("get_buzz.php", {post_id: post_id}, function() {
        $('#buzz_window_'+post_id).fadeIn(500);
    });
}





