/*______________________________________________________________________*\
||                                                                      ||
|| __   __                        				            	        ||
|| \ \ / /__  _ __   ___ __ _ 						                    ||
||  \ V / _ \| '_ \ / __/ _` |		- Yonca New Media                   ||
||   | | (_) | | | | (_| (_| |		- www.yonca-ad.com	                ||
||   |_|\___/|_| |_|\___\__,_|                                          ||
||                                                                      ||
||______________________________________________________________________||
\* 																		*/
function preloadok() {
	$("body").css({ background: "url(http://www.yonca-ad.com/images/bg_hq.jpg) repeat scroll center top #000" });
}
$(document).ready(function() {
	// BROWSER DETECT
	var userAgent = navigator.userAgent.toLowerCase();
    $.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase()); 
    //internet explorer
	if($.browser.msie){
		$(".shadow").pngfix();
    }
    //chrome
    if($.browser.chrome){
        userAgent = userAgent.substring(userAgent.indexOf('chrome/') +7);
        userAgent = userAgent.substring(0,1);
        $.browser.safari = false;
    }
    //safari
    if($.browser.safari){
        userAgent = userAgent.substring(userAgent.indexOf('version/') +8);
        userAgent = userAgent.substring(0,1);
    }
	//mozilla
    if($.browser.mozilla){
        if(navigator.userAgent.toLowerCase().indexOf('firefox') != -1){
            userAgent = userAgent.substring(userAgent.indexOf('firefox/') +8);
            userAgent = userAgent.substring(0,1);
        }
        else{
            //
        }
    }
	// BROWSER DETECT
	$.preload("#preloader a", {
		onFinish:preloadok
	});
});

