/**
 * @author piotr
 */

//jQuery(document).ready( function(){
window.onload = function(){

	$('#main_menu li').mouseover(function(){ $(this).addClass('highlight'); })
	.mouseout(function(){ $(this).removeClass('highlight')} );
	
	$('#randomPhotos').bounceGallery('#content');

}
//});
