//////////////////////////////////////////////////////////////////////
// common				                                            //
//                                                                  //
// DOM - select object                                              //
// 								                                    //
// Copyright (C) 2006 - 2007  design project, www.dsnproject.hr     //
//								                                    //
// License: Commercial						                        //
//////////////////////////////////////////////////////////////////////

	/*txt fields*/		
	function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
			thefield.value = ""
	} 
	
	function setBackText(thefield){
		if (thefield.value=="")
			thefield.value = thefield.defaultValue;
	} 

	
	function common() {	
		/*scroll to*/
		$("a").bind("click",function(){
						
			var target=$(this).attr('href');	
			
			if (target){				 
				if (target.charAt(0) == '#'){
					var id = target.substring(1);
	
					if ($("a[name='"+id+"']").length){
						
						$.scrollTo($("a[name='"+id+"']"), 800, {easing:'easeOutExpo'});
						return false;
					}
	
				}	
				
			}
		});		
		
		/*skinned table*/
		$("table.table_skinned tr:odd").addClass("rw"); 
		
		$("table.table_skinned.vertical tr td:first-child").addClass("first"); 
		$("table.table_skinned.vertical tr th:first-child").addClass("first"); 

	}

	$(document).livequery(common);
