jQuery.noConflict();

jQuery(document).ready(function(){
    jQuery('#counter').flash(
        { src: '/page/-/wrappers/peoplecount.swf',
          width: 300,
          height: 50,
          flashvars: { liveCount: '90,911' }
        },
        { version: 8 }
    );
});

/*
jQuery(function($) { 
    jQuery('ul.gallery').galleria();
}); 
*/

function form_input_classes(){

    jQuery('input[type="text"]').addClass('text');
    jQuery('input[type="password"]').addClass('text');
    jQuery('input[type="checkbox"]').addClass('checkbox');
    jQuery('input[type="radio"]').addClass('radiobutton');
    jQuery('input[type="submit"]').addClass('submit');
    jQuery('input[type="image"]').addClass('buttonImage');

}

function form_labelize(){  jQuery(".labelize input:text").clearingInput(); } 

jQuery(document).ready(function() {

    form_input_classes();
    form_labelize();	

});