﻿
/////////// window open
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//////////  window close
function win_close(){
	window.close();
}


$(function() {
$('#nav').droppy({speed: 100});
});


$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein');},
4500);
});



$(document).ready(function(){
//Examples of how to assign the ColorBox event to elements
$("a[rel='popup']").colorbox({transition:"fade"});
$("area[rel='popup']").colorbox({transition:"fade"});
//Example of preserving a JavaScript event for inline calls.
$("#click").click(function(){ 
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
return false;
});
});



