// JavaScript Document

$(document).ready(function() {
						   
	//work list grid
	//$('.work-item:odd').addClass('omega');
	//$('.work-item:even').addClass('alpha');
   
	//show work content
	$('.work-item').hoverIntent(
		function () {
		$('.work-content',this).slideDown('fast');
	}, 
		function () {
		$('.work-content',this).slideUp('fast');
	});
	
	//make work item open in new window or tab
	$('a[href^=http]').click( function() {
		window.open(this.href);
		return false;
	});

});
