var imgArray = ["vc_sb.jpg", "vc_iv.jpg"];
var index = 0;
var varicose_index = 0;

rotate_banner = function() {
        setInterval( function() {
    	    $('#vcbanner').hide().attr( "src", imgArray[ ++index % 2 ] ).show();
    	}, 3000 );
}

rotate_veins = function() {
    setInterval( function() {
	    ++varicose_index;
	    $('#fadeshow1').fadeOut( function() {
		    $(this).load( function() { $(this).fadeIn(); } );
		    $(this).attr( "src", imagearray[ varicose_index % imagearray.length ][0] ); });

	    $('#fadeshow_text').html( imagearray[ varicose_index % imagearray.length ][1] );
	}, 4000 );
}

$(document).ready( function() {
	rotate_veins();
	rotate_banner();
    });

