$(function() {
	
<!-- For Lazy Load Images -->
	
	$(".mainContent img").lazyload({
			placeholder : "../img/ajax-loader.gif",
			effect : "fadeIn"
		});
		
<!-- For Highlighting social icons on Footer -->	
	$('#footer ul.social img').css('opacity', '.8');
	$('#footer ul.social a').hover (function() {
		$('img',this).stop(true).animate({
			opacity : '1'
		}, '10');
	}, function() {
		$('img',this).stop(true).animate({
			opacity : '.8'
		});
	});
		
<!-- For Fading Link Images -->	

	$('a.photo, a.video, a.content').hover (function() {
		$(this).css('background-color', '#333333');		
		$('img', this).fadeTo(300, 0.4);
	}, function() {
		$(this).css('background-color', '#FFFFFF');
		$('img, this').stop().fadeTo(300, 1);
	});

<!-- Login pop-up -->
	// Show/hide remind password panel
	$('#remindBlock').css('display','none');
		$('#remind').click(function() {
			$('#remindBlock').toggle();
		});
});

<!-- For sliding up -->
		
	function scrollWin(){
		$('html').animate({
		scrollTop: $("#header").offset().top
		}, 800);
	}

