 $(document).ready(function(){
//Stilingas BROWSE mygtukas

	 $("input[type=file]").filestyle({
     image: "./css/bg71.png",
     imageheight : 28,
     imagewidth : 89,
     value : 'd',
     width : 151
		});
$('.file').attr('value','Įkelti nuotrauką');
$('.file').bind('click',function(){
	this.value=this.value=='Įkelti nuotrauką'?'':this.value;
}).bind('blur',function(){
	this.value=this.value==''?'Įkelti nuotrauką':this.value;
});
		
//Roundai
   $('div.middle li').append('<img src="./css/bg62.png" alt="" style="position: absolute; top: 0; left: 0; width: 4px;"/>');
   $('div.middle li').append('<img src="./css/bg63.png" alt="" style="position: absolute; right: 0; top:0; width: 4px;"/>');
   $('div.middle li').append('<img src="./css/bg64.png" alt="" style="position: absolute; right: 0; bottom: 0; width: 4px;"/>');
   $('div.middle li').append('<img src="./css/bg65.png" alt="" style="position: absolute; left: 0; bottom: 0; width: 4px;"/>');
});
   

