// JavaScript Document

(function($){

	$(document).ready(function(){

		// set year in copyrights.
		$('.copyright').html('Copyright '+ (new Date().getFullYear() || '2009') +' P-WORK Inc. All Rights Reserved.');
		
		// for ie6.
		var browser_ver = navigator.userAgent.indexOf('MSIE 6', 0);
		if ( browser_ver >= 0 ){
			try {  
				// alert (browser_ver);
				document.execCommand('BackgroundImageCache', false, true);  
			} catch(e) {} 
		};
	});

})(jQuery);


