//Search input label swap
jQuery(document).ready(function(){
    jQuery('input#search-field[type="text"]').focus(function() {
        if (this.value == this.defaultValue) this.value = '';
    });
    jQuery('input#search-field[type="text"]').blur(function() {
        if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');
    });
});

//jQuery.noConflict();
jQuery(document).ready(function($){

	$('.mcol').makeacolumnlists({cols: 3, colWidth: 0, equalHeight: 'ul', startN: 1});
	
});

//prevents a flash of unstyled content
jQuery(".js ul#page-menu, .js ul#cats-menu, img#logo").show(); 