$(document).ready(function(){
menuInit();
jQuery("a[rel=lightbox]").fancybox({
	'zoomSpeedIn'	:	500,
	'zoomSpeedOut' :	500,
	'hideOnContentClick': false,
	'frameWidth': 840,
	'frameHeight': 400
});



$('a.submit').click(function(){
$(this).closest('form').submit();
return false;
})
});

function expand(){
$(this).children('img').attr('src','images/collapse.png');
$(this).next('ul.submenu').toggle();
}

function collapse(){
$(this).children('img').attr('src','images/expand.png');
$(this).next('ul.submenu').toggle();
}

function menuInit(){
$('a.expand').toggle(expand,collapse);
$('li.current > a.expand').toggle(collapse,expand);
$('li.current > a.expand > img').attr('src','images/collapse.png');
$('a.main').children('img').attr('src','images/collapse.png');
$('a.main').next('ul.submenu').show();

}


