$(document).ready(function() {
    //home page image rotation
    $('#photos').galleryView({
    	panel_width: 730,
    	panel_height: 360,
    	pause_on_hover: true,
    	show_filmstrip: false,
    	show_overlays: 	true,
    	panel_scale: 	'crop',
    	show_panel_nav: false,
    	transition_speed: 1500
    });
    
//clear the input box for the log in form on focus
    $('.text').focus(function() {
        $(this).val("");
       });
//reset fields on submit
       // $('#log-in').submit(function() {
       //     $('#username').val("user name");
       //     $('#password').val("pass word");
       //     $('#log-in').focus();
       // });
          
});//end whole thing
    
