// JavaScript Document
function checkWebkit(){
var isWebkit = false;
	if( window.devicePixelRatio && window.getMatchedCSSRules && !window.Opera){ 
		isWebkit = !!window.getMatchedCSSRules(document.documentElement,''); 
		if(isWebkit){
			$(document.body).addClass('webkit-based');
		}
	} 
}
