jQuery.noConflict();

jQuery(document).ready(function() {
	jQuery('#show1').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 6000, timeout: 8000, speed: 1500 });
	jQuery('#show2').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 0, timeout: 7000, speed: 1500 });
	jQuery('#show3').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 10000, timeout: 8000, speed: 1500 });
	jQuery('#show4').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 8000, timeout: 7000, speed: 1500 });
	jQuery('#show5').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 4000, timeout: 8000, speed: 1500 });
	jQuery('#show6').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 2000, timeout: 8000, speed: 1500 });
	jQuery('#show7').cycle({ fx: 'fade', requeueOnImageNotLoaded: true, delay: 12000, timeout: 7000, speed: 1500 });

	jQuery(".collapse").click(function () {
		jQuery("#adminmenu").animate({left: "-150px"}, {duration: 800});
		jQuery(".collapse").fadeOut();
	});

	jQuery(".expand").click(function () {
		jQuery("#adminmenu").animate({left: "0px"}, {duration: 800});
		jQuery(".collapse").fadeIn();
	});

	jQuery("#popupBackground").click(function() {
		deactivatePopup();
	});

	jQuery("#closelink").live('click', function() {
		deactivatePopup();
	});

	jQuery(document).keypress(function(e) {
		// Close popup if Esc key is pressed
		if (e.keyCode==27 && popupStatus==1) {
			deactivatePopup();
		}
	});
});

jQuery(window).load(function() {
	jQuery("#loadmsg").css('display', 'none');
});

