// JavaScript Document
	 $(document).ready(function(){
	 	$("#background_1").svg();
		$(window).resize();
       });

		    $(window).resize(function(){
            	x = $(window).height() / 2;
				y = $(document).width();
				
					$("#background_1").height(x*2);
					$("#background_1").width(y);
					
					$("#background_2").height(x*2);
					$("#background_2").width(y);		
				
			var svg = $("#background_1").svg('get');
			svg.clear();
			svg.line(0, 0, y+20, 270, {'stroke-width': 60, stroke: '#2cc6dd', opacity: '0.5' });

				
					
			
       		 });
			 
		
			 
