There is a good tutorial here about combining 2 sketches into one: http://www.thebox.myzen.co.uk/Tutorial/Merging_Code.html
The first thing I notice about your code is both sketches are full of delays, this makes combining them pretty much impossible because when a delay is running everything else stops, so the delays in one sketch prevent the other from doing anything.
The solution is to re-write without delays (or while loops). Here are some tutorials to help you understand how to do that:
Start with the blink without delay example in the IDE, then study these:
Using millis for timing
Demonstration for several things at the same time
Finite state machine tutorial
If you don't understand the tutorials come here and ask.
Oh, and please format your code properly as Tom suggested.