$(document).ready(function(){
		$('#menu ul li:last').css('background', 'none');
		$('#category div.list ul ul li:first-child').css('border-top', 'none');
		$('#category div.list ul ul li:last-child').css('border-bottom', 'none');
		$('#category div.list ul li:first-child').css('border-top', 'none');
		$('#category div.list ul li:last-child').css('border-bottom', 'none');
		$('#slideshow').cycle();
		$('.round').append('<img src="./template/images/bg3.png" alt="" style="position: absolute; top: 0; left: 0; z-index: 99;"/>');
	    $('.round').append('<img src="./template/images/bg4.png" alt="" style="position: absolute; right: 0; top:0; z-index: 99;"/>');
	    $('.round').append('<img src="./template/images/bg5.png" alt="" style="position: absolute; right: 0; bottom: 0px; z-index: 99;"/>');
	    $('.round').append('<img src="./template/images/bg6.png" alt="" style="position: absolute; left: 0; bottom: 0px; z-index: 99;"/>');
		
		$('div.product').append('<img src="./template/images/tl.jpg" alt="" style="position: absolute; top: -3px; left: -3px; z-index: 99;"/>');
	    $('div.product').append('<img src="./template/images/tr.jpg" alt="" style="position: absolute; right: -3px; top:-3px; z-index: 99;"/>');
	    $('div.product').append('<img src="./template/images/br.jpg" alt="" style="position: absolute; right: -3px; bottom: -3px; z-index: 99;"/>');
	    $('div.product').append('<img src="./template/images/bl.jpg" alt="" style="position: absolute; left: -3px; bottom: -3px; z-index: 99;"/>');
		
		
		//Kategoriju perjungimas
		$('.busines a').bind('click',function(){
			$('#privateList').css('display','none');
			$('.busines').addClass('selected');
			$('.busines div.hasBackgroundColor').css('background','#e7eff6');
			$('.private div.hasBackgroundColor').css('background','#dddfe1');
			$('.private').removeClass('selected');
			$('#businesList').css('display','block');
			return false;
		});
		$('.private a').bind('click',function(){
			$('#businesList').css('display','none');
			$('.private').addClass('selected');
			$('.busines').removeClass('selected');
			$('.busines div.hasBackgroundColor').css('background','#dddfe1');
			$('.private div.hasBackgroundColor').css('background','#e7eff6');
			$('#privateList').css('display','block');
			return false;
		});
		//Baneriu centravimas
		jQuery.each($('div.banner a'),function(){
			var width = $(this).children('img:first').width();
			if(width > 50){
				$(this).css({display: 'block',width: width, margin: '0 auto'});
			}
			if(width > 200){
				$(this).children('img').css('width','200px');
				$(this).css({width: '200px'});
			}
		});
		///////-------------------
		
		//lightbox
		$(function(){
	        $('#product-image a').not('.back').lightBox();
	    });
		//Banku pasirinkimas
		$('.inputBanks').bind('click',function(){
			$('#formSubmitButton').removeAttr('disabled');
			//$('#formToSend').attr('action',$(this).val());
			$('.banks').hide();
			$(this).parent().parent().children('td:last').children().css('display','block');
		});
		

		
		//Vidurinio meniu skirtuku paslepimas
		$('#innerMenu ul li a:first').css('border-left','none');
		$('#innerMenu ul li a:last').css('border-right','none');
		
		$('div.private,div.busines').corner({
	    tl: { radius: 14 },
	    tr: { radius: 14 },
	    bl: { radius: 0 },
	    br: { radius: 0 }});
		$('div.list,div#basket,div#register,div.commercial').corner({
	    tl: { radius: 14 },
	    tr: { radius: 14 },
	    bl: { radius: 14 },
	    br: { radius: 14 }});	
		$('.rounding').corner({
	    tl: { radius: 7 },
	    tr: { radius: 7 },
	    bl: { radius: 7 },
	    br: { radius: 7 }});	
	});
