/* 
Lucky Blue
jquery-lucky_blue.js created by Nathan Cooper - nathanpcooper@gmail.com
*/

// clear form text-field on focus
$(function(){
	$('input[type=text]').focus(function() {
		this.value = '';
    });
});	
	
$(function(){
	$('#photos').galleryView({
		panel_width: 730,
		panel_height: 462,
		frame_width: 104,
		frame_height: 66
	});
});
