$(document).ready(function(){
	
	// Popup Window
	$('.pop').popupWindow({ 
		centerScreen:1 
	});
	
	// Council Magic:
	$('.councilbox.item1').show();
	$('.councillistitem').hover(function(){
		$(this).css({
		'background':'#7FBFE9',
		'color':'#022E4F',
		'cursor':'pointer'
		});
	}, function(){
		$(this).css({
		'background':'#022E4F',
		'color':'#7FBFE9',
		'cursor':''
		});
	});
	
	$('.councillistitem2').hover(function(){
		$(this).css({
		'background':'#7FBFE9',
		'color':'#022E4F',
		'cursor':'pointer'
		});
	}, function(){
		$(this).css({
		'background':'#022E4F',
		'color':'#7FBFE9',
		'cursor':''
		});
	});		
});

