// JavaScript Document// Method to include js files in a mainfunction includeJS(js_script){	document.write('<script type="text/javascript" src="' + js_script + '"></script>');}// Call all the js files that need to be included on all pages using the include methodincludeJS('/_js/jquery.easing.min.js');includeJS('/_js/jquery.lavalamp.min.js');includeJS('/_js/jquery.pngFix.js');$(document).ready(function() {	$(".tabs").click(function(){   		$(this).next().fadeSliderToggle()		 return false;	})});// Lava Lamp Settings$(function() {    $("#1, #2, #3").lavaLamp({         speed: 300    });});// PNG Fix$(document).ready(function(){    $(document).pngFix();});
