$(document).ready(function(){	

	$('a[href=#top]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	$('a.lightbox').lightbox();
	$("a.btn, .tag-list li a, .page-list li a").hover(function() {
		$(this).stop().animate({ backgroundColor: "#d02624"}, 400);
		},function() {
		$(this).stop().animate({ backgroundColor: "#f2f2f2" }, 400);
	});
				$('input[title],textarea[title]').each(function() {
					if($(this).val() === '') {
						$(this).val($(this).attr('title'));	
					}
					
					$(this).focus(function() {
						if($(this).val() == $(this).attr('title')) {
							$(this).val('').addClass('focused');	
						}
					});
					$(this).blur(function() {
						if($(this).val() === '') {
							$(this).val($(this).attr('title')).removeClass('focused');	
						}
					});
				});
				$('label').addClass('hidden');
$('#submit').click(function(){
		$(this).parents().find('input,textarea').each(function(){
			if($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
		});
	});
	$('#marker').everyTime(100,function (){
	$('#marker').animate({top:'170px'},1000).animate({top:'180px'},1000);
});
$('#shcont').cycle();
		});


