$(document).ready(function(){
	
	// Clear values from form fields
	$('input:text, input:password, textarea').focus(function(){
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
		$(this).blur(function(){
			if ($(this).val().length == 0) {
				$(this).val($(this).attr('title'));
			}
		});
	});
	
	$("#btn-shareyourideas,#close-shareyourideas").click( function(e){
		e.preventDefault();
		var top = parseInt($("#flyout-shareyourideas").css('top'));
		var newTop = ( top == -524 ) ? 0 : -524 ;
		$("#flyout-shareyourideas").animate({
			top: newTop
		}, 1000 );
	});
	
	if( $("#main-gallery .cycleWrap").length ){
		$("#main-gallery .cycleWrap").cycle();
	}

});
