/* File: js/controllers/application.js, Ratio: 18.1% */

$(document).ready(function(){BB.init();$('form .tip').tooltip({tip:'#tooltip'});$('a.email').each(function(i){var text=$(this).text();var address=text.replace(" :: ","@");$(this).attr('href','mailto:'+address);$(this).text(address);});});var BB={init:function(){this.tableSelect.init();this.cakeDate();},tableSelect:{init:function(){$("div.tableSelectControls a").click(function(e){e.preventDefault();$this=$(this);$checkboxes=$('td.selectColumn input');if($this.hasClass('all')){$checkboxes.attr('checked',true);}else{$checkboxes.attr('checked',false);}});}},cakeDate:function(){$('form div.date').append('<input class="datepicker" type="hidden" />');$('input.datepicker').datepicker({dateFormat:'yy-mm-dd',buttonImage:'/img/silk/calendar.png',buttonImageOnly:true,showOn:'button',maxDate:+0,onSelect:function(sel_date){var newDate=sel_date.split('-');$(this).siblings('select').each(function(){id=$(this).attr('id');if(id.substring(id.length-3,id.length)=='Day')$(this).val(newDate[2]);else if(id.substring(id.length-5,id.length)=='Month')$(this).val(newDate[1]);else if(id.substring(id.length-4,id.length)=='Year')$(this).val(newDate[0]);});},beforeShow:function(){var year='';var month='';var day='';var id='';$(this).siblings('select').each(function(){id=$(this).attr('id');if(id.substring(id.length-3,id.length)=='Day')day=$(this).val();else if(id.substring(id.length-5,id.length)=='Month')month=$(this).val();else if(id.substring(id.length-4,id.length)=='Year')year=$(this).val();});$(this).val(year+'-'+month+'-'+day);return{};}});},richText:{init:function(){tinyMCE.init({mode:'specific_textareas',theme:'advanced',editor_selector:'richText',theme_advanced_toolbar_location:'top',theme_advanced_toolbar_align:'left',theme_advanced_path_location:'bottom',plugins:'fullscreen, paste, tabfocus',relative_urls:false,file_browser_callback:'BB.richText.fileBrowserCallBack',theme_advanced_buttons1:'bold,italic,underline,separator,bullist,numlist,separator,sub,sup,separator,outdent,indent,separator,undo,redo,separator,link,unlink,separator,hr,image,separator,pastetext,pasteword,separator,charmap,removeformat,visualaid,fullscreen',theme_advanced_buttons2:'',theme_advanced_buttons3:'',theme_advanced_resizing:true,theme_advanced_resize_horizontal:false,tab_focus:':prev,:next'});},selectURL:function(url){if(url=='')return false;url='/uploads/img/'+url;field=window.top.opener.browserWin.document.forms[0].elements[window.top.opener.browserField];field.value=url;if(field.onchange!=null)field.onchange();window.top.close();window.top.opener.browserWin.focus();},fileBrowserCallBack:function(field_name,url,type,win){browserField=field_name;browserWin=win;window.open('/admin/images','browserWindow','modal,width=600,height=406,scrollbars=yes');}}};