$(document).ready(function() {
	$('.userboxInput').bind("focus", function() {
		$(this).val("");
	});
	$('.userboxInput').bind("blur", function() {
		if ($(this).val() == '') {
			$(this).val("email");
		}
	});

	// init fancybox gallery
		$(".gallery a.group").fancybox( {
			'zoomSpeedIn' : 300,
			'zoomSpeedOut' : 300,
			'overlayShow' : true
		});

		$('.search_input').bind('focus', function() {
			$(this).val('');
			$(this).addClass('search_active');
		});
		$('.search_input').bind('blur', function() {
			$(this).val('search..');
			$(this).removeClass('search_active');
		});

		$(".fg-button").bind("mouseover", function() {
			$(this).addClass('ui-state-hover');
		});
		$(".fg-button").bind("mouseout", function() {
			$(this).removeClass('ui-state-hover');
		});

	});