
$(document).ready(function() {
	//i_utils.js
	CheckIframe();
	mapBaseActions();
	
	var col_max_height = 0;
	
	$(".col_check").each(function() {
		if ($(this).height()>col_max_height) {
			col_max_height = $(this).height();
		}
	});
	
	if (col_max_height>0) {
		$(".maxheight").each(function() {
			$(this).css('height',col_max_height + 'px');
		});
	}
	$('#flash_title').flash({
        src: 'css/swf/title.swf',
        width: 600,
        height: 35,
        name: 'flash_title_',
		flashvars: {title: $('#pagetitle').text(), link_url: $('#pagetitlelink').text()}
    });
	
	
	
});
