$(document).ready(function() {
	if($.browser.msie) {
		$('#slide_contain').css('margin-left', '15px');
		$('#port_left').css('width', '185px');
	}
	
	// Video Popups
	$('#video table th a').fancybox();
	
});
// Blog Height Problem with Sidebar - Always
$(window).load(function() {
	var r_height = $('.right').height();
	var l_height = $('.left').height();
	if( r_height < l_height) {
		$('.right').height(l_height);
	}
});
