$(document).ready(function(){

	$('div.tb').hover(
		function () {
			$(this).children('.photo_desc').show();
		},
		function () {
			$(this).children('.photo_desc').hide();
		}
	);
	
	$('#site_calc').click(
		function() {
			$('.cat-item').removeClass('selected');
			$(this).parent('.cat-item').addClass('selected');
			$('.seo_calc').hide();
			$('.site_calc').show();
			return false;
		}
	);
	
	$('#seo_calc').click(
		function() {
			$('.cat-item').removeClass('selected');
			$(this).parent('.cat-item').addClass('selected');
			$('.site_calc').hide();
			$('.seo_calc').show();
			return false;
		}
	);
	
	$('.select_price').sSelect();
});
$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'fade',
        animSpeed:2000,
        pauseTime:2000
	});
});
