// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function getQueryVariable(variable) {
  var query = window.location.search.substring(1);
  var vars = query.split("&");
  for (var i=0;i<vars.length;i++) {
    var pair = vars[i].split("=");
    if (pair[0] == variable) {
      return pair[1];
    }
  } 
  alert('Query Variable ' + variable + ' not found');
}
	jQuery().ready(function(){
		// Initiates Image swap Plugin				
		$.swapImage(".swapImage");
		jQuery('#slideBox').accordion({
			active: false,
			header: '.head',
			navigation: true,
			event: 'mousedown',
			alwaysOpen: false,
			fillSpace: false,
			animated: 'easeslide'
		});
	});
