$(document).ready(function(){
		    
	// rollovers on portolio pages
	$('ul.projects li').hover(function(){
		$(this).find('img').stop().animate({opacity:0.1},400);
	}, function(){
		$(this).find('img').stop().animate({opacity:1.0},1200);
	});	
	// removes widows -- this script is currently causing havoc with lots of things so I've disabled it. 
	//var hText = '';
	//$('h1,.post h2,.excerpt h2,p').each(function() {
	//	hText  = $(this).html().replace(/ (\S+)$/,'&nbsp;$1');
	//	$(this).html(hText);
	//});
	
	// embed qt
	$.embedquicktime({
		jquery: '/includes/js/jquery-1.2.6.min.js', 
		plugin: '/includes/js/jquery.embedquicktime.js'
    });
});