// JavaScript Document
// for jquery 

$(document).ready(function(){

		$('#topblock ul li:last-child a').css('border-right-width','0px');
		//$('#topnav ul li:last-child').css('border-right-width','0px');
		//$('#topnav ul li:last-child').css('padding-right','0px');
		//$('#vacaturebuttons ul li:nth-child(3n+3)').addClass('thirdchild');
		$('ul.collegas li:nth-child(3n)').addClass('last');
		
		$('#rightcol div:nth-child(1) a').hover(function(){
			$(this).css({'background':'#42A7BB'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(2) a').hover(function(){
			$(this).css({'background':'#6795ca'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(3) a').hover(function(){
			$(this).css({'background':'#9577af'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(4) a').hover(function(){
			$(this).css({'background':'#39205e'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(5) a').hover(function(){
			$(this).css({'background':'#bc0062'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(6) a').hover(function(){
			$(this).css({'background':'#940067'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(7) a').hover(function(){
			$(this).css({'background':'#9d003c'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
		$('#rightcol div:nth-child(8) a').hover(function(){
			$(this).css({'background':'#5d2133'});
			},function(){
			$(this).css({'background':'#cdd1e5'});
			})
})


















