
jQuery(document).ready(function(){
    SetContentBoxHeight();
    jQuery('.round').corner();
});

jQuery(function( $ ){
    $.preload( '#nav img', { find:'.png', replace:'_Hover.png' });
	$('#nav img').hover(function(){
	    
		    this.src = this.src.replace('.png','_Hover.png');
	},function(){
	    
		    this.src = this.src.replace('_Hover','');
	});
});


function SetContentBoxHeight()
{
    var divmain = $('div#right');
    var divsub = $('div#left');
    
    if(divmain && divsub)
    {
        if($(divmain).height() > $(divsub).height())
        {
            $(divsub).height($(divmain).height())
        }
        else if($(divsub).height() > $(divmain).height())
        {
            $(divmain).height($(divsub).height())
        }
    }
}
