$(function(){
   //alert('test msg'); 
});

//----------------------------------------------------------------Start
$().ready(function(){
	$('body#home header').hide();
	$('body#home .logo').hide();
	$('body#home nav').hide();
	$('body#home header').fadeIn();
	setTimeout(function() {
        $('body#home .logo').fadeIn(500);
    },500);
	setTimeout(function() {
        $('body#home nav').fadeIn(500);
    },800);
});

//----------------------------------------------------------------Iris Middle Panel
$().ready(function(){
	$(".btn-slide").click(function(){
		$("#iris-middle").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});


//$().ready(function(){
	//$('div#slideshow span.image-wrapper a.advance-link').click(function() {
	  //alert('Handler for .click() called.');
	//});
//});





//pop up window
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=150,width=275,left=500,top=250');
	if (window.focus) {newwindow.focus()}
}
