// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// expose the form when it's clicked or cursor is focused
	var form = $(".expose").bind("click keydown", function() {

		$(this).expose({

			// when exposing is done, change form's background color
			onLoad: function() {
				form.css({backgroundColor: '#666'});
			},

			// when "unexposed", return to original background color
			onClose: function() {
				form.css({backgroundColor: null});
			}

		});
	});
});

// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// expose the form when it's clicked or cursor is focused
		$("#bform").click(function() {
			$('#expose_form').expose();
		
	});
});


function jumpScroll() {
    	window.scroll(0,540); // horizontal and vertical scroll increments
}


function jumpScroll2() {
    	window.scroll(0,320); // horizontal and vertical scroll increments
}

function jumpScroll3() {
    	window.scroll(0,140); // horizontal and vertical scroll increments
}

// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// expose the form when it's clicked or cursor is focused
	var form = $(".c_expose").bind("click keydown", function() {

		$(this).expose({

			// when exposing is done, change form's background color
			onLoad: function() {
				form.css({backgroundColor: '#ccc'});
			},

			// when "unexposed", return to original background color
			onClose: function() {
				form.css({backgroundColor: null});
			}

		});
	});
});

// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// expose the form when it's clicked or cursor is focused
		$("#cform").click(function() {
			$('#c_expose_form').expose();
		
	});
});

