$(document).ready(function(){
	
		var displaySubmit=false, newRowCount=0;
		
		$('#btn_addrow2').click(function() {
			
			newRowCount++;
			newRow = $("#blankrow").clone().prependTo('tbody').attr("class","newrow").removeAttr("id").show();
			newRow.find("#rfc_partnumber").attr("name","rfc_partnumber["+ newRowCount + "]");
			newRow.find("#rfc_quantity").attr("name","rfc_quantity["+ newRowCount + "]");
			newRow.find("#rfc_brand").attr("name","rfc_brand["+ newRowCount + "]");
			newRow.find("#rfc_price").attr("name","rfc_price["+ newRowCount + "]");
			$('#rfc_count').attr('value',(newRowCount+1));
			
			
			newRow.find(".removeRow").click(function(){
				thisRow = $(this).parents("tr");
				newRowCount--;
				thisRow.remove();
				//alert('borrar');
				return false; //kill the browser default action
				
			});
			
			return false;
		});
		
		$('#btn_addrow').click(function() {
			
			newRowCount++;
			newRow = $("#blankrow").clone().prependTo('#RQFs tbody').attr("class","newrow").removeAttr("id").show();
			newRow.find("#rfc_partnumber").attr("name","rfc_partnumber["+ newRowCount + "]");
			newRow.find("#rfc_quantity").attr("name","rfc_quantity["+ newRowCount + "]");
			newRow.find("#rfc_brand").attr("name","rfc_brand["+ newRowCount + "]");
			newRow.find("#rfc_price").attr("name","rfc_price["+ newRowCount + "]");
			$('#rfc_count').attr('value',(newRowCount+1));
			
			
			newRow.find(".removeRow").click(function(){
				thisRow = $(this).parents("tr");
				
				thisRow.remove();
				//alert('borrar');
				$('#rfc_count').attr('value',newRowCount);
				newRowCount--;
				return false; //kill the browser default action
				
			});
			
			return false;
		});
		
		setInterval(function() {
		
			var offset=  parseInt($(".Logotipos ul").css('left'));
			var newoffset = offset - 2;
			if (newoffset<=-2200) {
				$(".Logotipos ul").css('left',0 );
			} else {
				$(".Logotipos ul").css('left',newoffset );
			}
		
			console.log("New Offset: %s", $(".Logotipos ul").css('left'));
		}
		,100);

		
	
});
  
  
  
