$(document).ready(function() {
	// home page scoller starts here 
	$(function()
		{
			// this initialises the demo scollpanes on the page.
			$('#pane1').jScrollPane({showArrows:true});
			//
			//$('#pane3').jScrollPane({showArrows:true});
			// this allows you to click a link to add content to #pane2 and shows how to 
			// reinitialise the scrollbars when you have done this.
		});
	
	$('#emailimg').click(function() {
		$('.login-frm').slideDown();
	});
	
	$('.login-frm-close').click(function() {
		$('.login-frm').slideUp();
	});
	

	
});
