$(document).ready(function(){
			
			
			// =========================================
			// Make external links open in a new window 
			// =========================================
			
			$('a[href^="http://"]').not('[href*="http://wng.corporate3design.com"]').not('[href*="http://www.westnotifications.com"]')
			.attr({target: "_blank", title: "Opens in a new window"});
			
			// =========================================
			// Sidebar Accordion
			// =========================================
			
			$('#sidebar2 ul.drawers').accordion({
					header: 'h2',
					selectedClass: 'selected',
					event: 'mouseover',
					autoHeight: false,
					active: false
			});	
			
			// =========================================
			// Case Studies Accordion
			// =========================================
			
			$('.casestudiescontentarea ul.drawers').accordion({
					header: '.accordion_head',
					selectedClass: 'selected',
					event: 'click',
					autoHeight: false,
					active: false
			});	
			
			// Fix background image caching problem
			if (jQuery.browser.msie) {
				try { document.execCommand("BackgroundImageCache", false, true); 
				} catch(err) {}
			}
			
});