$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animation_speed: 'fast',
		slideshow: 5000,
		autoplay_slideshow: false,
		opacity: 0.80,
		show_title: true,
		allow_resize: true,
		default_width: 500,
		default_height: 450,
		theme: 'pp_default',
		deeplinking: false,
		social_tools: ''
	});

	$('#dialogBox').jqm({
		ajax:'@href', trigger: 'a.ModalDiag', cache: false, overlay:80, toTop:'true', ajaxText: '<p style="text-align:center"><img src="/images/loader-big.gif" /></p>'
	});
					
    $("ul.sf-menu").supersubs({ 
        minWidth:    12,
        maxWidth:    27,
        extraWidth:  1
    }).superfish({
        delay:       1000,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed:       'normal',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    });
    $("ul.sf-smenu").supersubs({ 
        minWidth:    12,
        maxWidth:    27,
        extraWidth:  1
    }).superfish({
        delay:       1000,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed:       'normal',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    });
    
});

function openDiag(page)
{
	$('#dialogBox').jqm({ajax:page, cache:false, overlay:80, toTop:'true', ajaxText: '<p style="text-align:center"><img src="/images/loader-big.gif" /></p>'});
	$('#dialogBox').jqmShow();
}

function closeDiag()
{
	$('#dialogBox').jqmHide();
}
