you can use document.ready
function of jquery..
put a button at that blue area (i.e you can apply some css to that button which will make it with same look and feel)
<input type='button' id='button' />
and you can trigger an click event using jquery
<script type="text/javascript">
$( document ).ready(function() {
$("#button").trigger('click');
});
</script>
OR
<script type="text/javascript">
jQuery(function(){
jQuery('#button').click();
});
</script>
EDIT
for the html link you provided you should use script like below
<script type="text/javascript">
$( document ).ready(function() {
$("#google_image_div a").trigger('click');
});
</script>
let me know if any help needed..