jQuery(document).ready(function() {
	BuildMenu();
	
	jQuery(".colHeader").hover(function() {
		jQuery(this).css('cursor', 'pointer');
	}, function() {
		//
	});
	
	jQuery(".colHeader").click(function() {
		document.location = jQuery(this).find("a:first").attr("href");
	});
	
	jQuery('#sidePic').cycle({
	    fx:     'fade',
	    speed:   1200,
	    timeout: 4000,
	    random: 1,
	    next:   '#sidePic'
	});	
});
