(function($)
{$.fn.filestyle=function(options)
{return;var settings={width:250};if(options)
$.extend(settings,options);return this.each(function()
{var self=this;var wrapper=$("<div class='fileButton'>").css({"width":settings.imagewidth+"px","height":settings.imageheight+"px","background":"url('/img/file-button-bg.gif') 0 0 no-repeat","background-position":"right","display":"inline","position":"absolute","overflow":"hidden"});var filename=$('<input class="custFile" type="text">').addClass($(self).attr("class")).css({"display":"inline","position":"relative","width":settings.width+"px"});var fakebg=$('<div class="fCustomCont">').css({"height":settings.imageheight+"px","background":"url(/img/file-input-bg.gif)","position":"absolute","cursor":"pointer","width":settings.width+settings.imagewidth+"px"});$(self).before(fakebg);$(self).before(filename);$(self).wrap(wrapper);$(self).css({"position":"relative","height":settings.imageheight+"px","width":settings.width+"px","display":"inline","cursor":"pointer","opacity":"0.0"});if($.browser.mozilla)
{if(/Win/.test(navigator.platform))
{$(self).css("margin-left","-142px");}
else
{$(self).css("margin-left","-168px");};}
else
{$(self).css("margin-left",settings.imagewidth-settings.width+"px");};$(self).bind("change",function()
{filename.val($(self).val());});});};})(jQuery);
