function storeSort(obj){
	
}

// Initial
if($)var tmp = $;
$ = jQuery;

$(document).ready(function()
{
	// http://www.dailycoding.com/Posts/default_text_fields_using_simple_jquery_trick.aspx
	if($(".defaultText")){
    $(".defaultText").focus(function(srcc)
    {
        if ($(this).val() == $(this)[0].title)
        {
            $(this).removeClass("defaultTextActive");
            $(this).val("");
        }
    });
	
    $(".defaultText").blur(function()
    {
        if ($(this).val() == "")
        {
            $(this).addClass("defaultTextActive");
            $(this).val($(this)[0].title);
        }
    });
    
    $(".defaultText").blur(); 

	}

});










// Re Config
jQuery = $;
if(tmp)$ = tmp;

jQuery(document).ready(function() {
	
    jQuery.fn.centerScreen = function(loaded) {
        var obj = this;
        if(!loaded) {
                obj.css('top', jQuery(window).height()/2-
this.height()/2);
                obj.css('left', jQuery(window).width()/2-
this.width()/2);
                jQuery(window).resize(function()
{ obj.centerScreen(!loaded); });
        } else {
                obj.stop();
                obj.animate({ top: jQuery(window).height()/2-
this.height()/2, left: jQuery(window).width()/2-this.width()/2}, 200, 'linear');
        }
}

});