I have a function and I know this is not the most efficient way to write it, not only for this function, but for others in the future.
It's the same lines except a number gets += 1 each time its repeated, so I'm sure theres a for, or if, or each way to loop this and reduce the code and increase the maintainability at the same time.
function lines() {
$('#bottom-1').lazylinepainter(
{
"svgData": pathObj1, //only line that changes
"strokeWidth": 1,
"strokeColor": "#fff"
}).lazylinepainter('paint');
$('#bottom-2').lazylinepainter(
{
"svgData": pathObj2, //only line that changes
"strokeWidth": 1,
"strokeColor": "#fff"
}).lazylinepainter('paint');
$('#bottom-3').lazylinepainter(
{
"svgData": pathObj3, //only line that changes
"strokeWidth": 1,
"strokeColor": "#fff"
}).lazylinepainter('paint');
$('#bottom-4').lazylinepainter(
{
"svgData": pathObj4, //only line that changes
"strokeWidth": 1,
"strokeColor": "#fff"
}).lazylinepainter('paint');
$('#solutions h2').delay( ).animate({opacity:'1'}, 1000, 'easeInQuint')
}