﻿$(window).load(function(){
    
    //call function to set equal heights here
 

       //this pushed the hidden stuff into place
        $('#imageLibrary div.summary').css('margin-left','0');
    
$('div.row').equalify();
	
	$(':submit').hover(
    function(){
        $(this).css('cursor', 'pointer');
    },
    function(){
        $(this).css('cursor', 'default');
    });

});



