$(document).ready(function(){
	// SCROLL TO TOP FUNCTION
	$('#gototop').click(function(){
		$('html, body').animate({scrollTop:0}, '1500');
	});
	
	// HOVER SCROLL TOP
	$('#gototop').mouseover(function() {  
		$(this).addClass("gototop_hover");
	});
	$('#gototop').mouseout(function() {  
		$(this).removeClass("gototop_hover"); 
	});
	
	// SEARCH BOX CLEAR
	$('#searchbox').focus(function() {
      $(this).val('');
	  $(this).addClass("searchfocus");
	});
	
	
	// GALLERY HOVER	
	$('.ngg-gallery-thumbnail').css('opacity',0.9).hover(function() { // opactity start value)
      $(this).fadeTo(250,1.0); // (duration, opactiry end value)
    }, function() {
      $(this).fadeTo(250,0.9); // (duration, opacity start value)
    });
	
});	
