/**
 * Common execution js
 * @author AK
 * 
 * dependancies: jQuery 1.2.x
 * 
 */

$(function(){
	/**
	 * anchors (external/popup)
	 * 
	 */
	var oPopWin = null;
	
	$("a[rel='external']").click(function(){window.open(this.href); return false});
	$("a[rel='popup']").click(function(){
		popWin = new PopupWindow();
		popWin.anchor = $(this);
		popWin.width = 500;
		popWin.height = 500;
		if (popWin.spawn())
			return false;
	});


	// genre/maand select
	$('#genreMaandForm input[type="submit"]').hide();
	$('#genreMaandForm select').change(function() {
		$(this).get(0).form.submit();
	});

	$('#calendarForm input[type="submit"]').hide();
	$('#calendarForm select').change(function() {
		$(this).get(0).form.submit();
	});
});