
$(document).ready(function(){

	sizeWrapper();
	$('#sidebarLinks a').each( function() {
		var linkText = $(this).html();
		$(this).html( '<img src="/assets/blank.gif" width="18" height="18" alt="" /><span>' +  linkText + '</span>' );
	});
	
	// define modal window sizes
	modals.modalWidth = 900;
	
	$('#m1 a, #m2 a').each( function() {
	
		if ( $( this ).attr('target') == "popup" ) {
			$( this ).bind( 'click', function( e ) {
				e.preventDefault();
				$( this ).attr('target', '');
				modals.add_frame( 1000 );
				modals.open_window( $( this ).attr('href'), $( this ).html(), 1000 );
			});
		}
		
	});
	
});

function sizeWrapper() {

	var targetHeight = $(document).height() - 290;
	$('#wrapper').css('height', targetHeight + 'px');
	
}
