
$(document).ready( function()
{
	// Lightbox pictures box
	$('.pictures a').lightBox();

	// Mouseover effect on top menu
   $(".menu_select").hover( function()
		{
			this.src = this.src.replace( ".png", "_selected.png" );
		},
		function()
		{
			this.src = this.src.replace( "_selected.png", ".png");
		}
	);
});

Cufon.replace('h2, h3, h4, .footer_head, .title, .features .item',{
fontFamily: 'Museo Sans 500',
textShadow: '#333333 1px 1px'
});


