$(function() {

	$('.circles a').css({opacity:"0.3", "filter":"alpha(opacity = 30)"});
	$('#screenshot .inner img').hide();
	$('#screenshot .inner img.img1').fadeIn();
	
	$('a.circle1').css({opacity:"0.8", "filter":"alpha(opacity = 80)"});
	
	$('a.circle1').click(function() {
		$('.circles a').css({opacity:"0.3", "filter":"alpha(opacity = 30)"});
		$(this).animate({opacity:"0.8", "filter":"alpha(opacity = 80)"}, 500);
		$('#screenshot .inner img').fadeOut();
		$('#screenshot .inner img.img1').fadeIn(1000);
	});
	$('a.circle2').click(function() {
		$('.circles a').css({opacity:"0.3", "filter":"alpha(opacity = 30)"});
		$(this).animate({opacity:"0.8", "filter":"alpha(opacity = 80)"}, 500);
		$('#screenshot .inner img').fadeOut();
		$('#screenshot .inner img.img2').fadeIn(1000);
	});
	$('a.circle3').click(function() {
		$('.circles a').css({opacity:"0.3", "filter":"alpha(opacity = 30)"});
		$(this).animate({opacity:"0.8", "filter":"alpha(opacity = 80)"}, 500);
		$('#screenshot .inner img').fadeOut();
		$('#screenshot .inner img.img3').fadeIn(1000);
	});

	
	$('div.rss ').css({"opacity":"0.7"});
	$('div.facebook ').css({"opacity":"0.7"});
	$('div.linkedin ').css({"opacity":"0.7"});
	$('div.twitter ').css({"opacity":"0.7"});
	
	$('div.rss ').hover(function() {
		$(this).stop().animate({"opacity":"1.0"});
	}, function() {
		$(this).stop().css({"opacity":"0.7"});
	});
	
	$('div.facebook ').hover(function() {
		$(this).stop().animate({"opacity":"1.0"});
	}, function() {
		$(this).stop().css({"opacity":"0.7"});
	});

	$('div.twitter ').hover(function() {
		$(this).stop().animate({"opacity":"1.0"});
	}, function() {
		$(this).stop().css({"opacity":"0.7"});
	});

	$('div.linkedin ').hover(function() {
		$(this).stop().animate({"opacity":"1.0"});
	}, function() {
		$(this).stop().css({"opacity":"0.7"});
	});
	
		$('span.clientlogin-front a').hover(function() {
		$(this).stop().animate({"top":"-5px"});
	}, function() {
		$(this).stop().css({"top":"-10px"});
	});
	


	
});