$(function(){
	
	$(".iframe").colorbox({width:"86%", height:"96%", iframe:true, opacity:0.4});
	$(".modal").colorbox({width:"760px", height:"550px", iframe:true, opacity:0.6});
	$(".modal_about").colorbox({width:"760px", height:"400px", iframe:true, opacity:0.6});
	$(".modal_contact").colorbox({width:"760px", height:"230px", iframe:true, opacity:0.6});
	
	
	
	$(".expose").bind("click keydown", function() { 
 
        $(this).expose({ 
 
            // custom mask settings with CSS 
            maskId: 'mask', 
 
            // when exposing is done, change form's background color 
            //onLoad: function() { 
                //this.getExposed().css({backgroundColor: '#711a7e'}); 
            //}, 
 
            // when "unexposed", return to original background color 
            //onClose: function() { 
                //this.getExposed().css({backgroundColor: null}); 
            //}, 
 
            api: true 
 
        }).load(); 
    });
    
});