

var search_init = false;

$(document).ready(function() {
	
	$('ul.main-menu-box > li').mouseover( function() {
		$(this).children('ul:first').each( function() {
			$(this).css('display', 'block');
		});
	});
	
	$('ul.main-menu-box > li').mouseout( function() {
		$(this).children('ul:first').each( function() {
			$(this).css('display', 'none');
		});
	});

  $("a[rel^='prettyPhoto']").prettyPhoto();

  $('#search-input-box').focus( function() {
    if(search_init == false)
    {
      $('#search-input-box').val('');
      $('#search-input-box').css('color', '#000000');
      search_init = true;
    }
  });

});

function printPage() 
{
  window.print();
}


