/**
 * Główny zestaw metod
 */
var Praca = {

	init : function(){
		$('#plik_cv').filestyle({ image:'/template/img/file_input_bg.jpg', imageheight:20, imagewidth:98, width:230 });
		$('#plik_lm').filestyle({ image:'/template/img/file_input_bg.jpg', imageheight:20, imagewidth:98, width:230 });
		$('#polecenie_submit').bind('click',Praca.wyslij_cv);
	},
	
	wyslij_cv : function(){
		document.getElementById('polecenie').submit();
		return false;
	}
};
