jQuery(document).ready(function($) {
	
	$("#news div.news-post:first-child").addClass('alpha');
	$("#news div.news-post:nth-child(4)").addClass('alpha');
	$("#news div.news-post:nth-child(3)").addClass('omega');
	$("#news div.news-post:last-child").addClass('omega');
	
	$('#news-pager a').click(
		function(){
			$("a.inactive").removeClass('inactive');
			$(this).addClass('inactive');
		}
	);
	
	$("#news-articles .news-post").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});	

	
	$(".case-study-title").hover(
		function(){
			$(".case-study-title h3, .case-study-title h4, .case-study-title p").css('color', '#08A');
		},
		function(){
			$(".case-study-title h3, .case-study-title h4").css('color', '#444');
			$(".case-study-title p").css('color', '#999');
		}
	);
		
	$(".case-study-title").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

	$(".cycle-me div:nth-child(2)").addClass('method');
	$(".cycle-me div:nth-child(3)").addClass('exper');
	$(".cycle-me div:nth-child(4)").addClass('tl');


	
});

