/*
* Ilyas Okay
* ilyasokay@hotmail.com
* 16.08.2011
*/
function on_focus(that, defaulttext) {
if (that.value == defaulttext) {
that.value='';
}
}
function on_blur(that, defaulttext) {
if (that.value == "") {
that.value = defaulttext;
}
}

jQuery.noConflict();
        (function($) {

        <!-- Example -->
        $(document).ready(function(){
								   	Cufon.replace('#nav>ul>li',{
	hoverables: { li: true }, 
	hover:true			  
	});
	Cufon.replace('h1',{
	hover:true			  
	});
	Cufon.replace('h2',{
	hover:true
	
	});
	Cufon.replace('h3',{
	hover:true

	});
	Cufon.replace('h4',{
	hover:true			  
	});
	
                //Examples of Global Changes
                $.fn.colorbox.settings.bgOpacity = "0.9";
                $(".colorbox").colorbox({slideshow:true});
        });

        })(jQuery); 
