Wardemon:
Hey!
I have a ambitious plan to make a drink fetching robot with quite a lot of features.
Plan is to make robot that has a robotic arm and it drives from my command to fridge, opens the fridge door, locates drink i asked for, picks it up and then returns to me.
Question is what kind of sensors I should use for locating fridge handle and pulling it open AND after opening, how to make it find the drink holder. I was thinking to make a bar code reader on arm so it could read the barcode from can and if its right, picks it up and closes door and comes to me. If its wrong can, it sends IR or something to fridge can holder to spin next drink.
I hope you people understand what I mean
my english is not best.
Am i too ambitious? this is my first project after all.
As a "first project" I would say that this may be something well beyond your level; after all, researchers have been trying to do something like this (in one form or another) for the past 40 or more years, with varying levels of success. For instance, here's one from 1964, called the "Hopkins Beast", designed to seek out a wall plug and plug itself in for recharging (otherwise, it wandered the halls of the university):
http://www.frc.ri.cmu.edu/~hpm/book98/fig.ch2/p019.html
There are many more examples historically and more recent exploring the idea of "find something, then manipulate it" for robotics. Books have been written on the subject, careers have been made on the subject. Researchers aren't quite there yet.
It might be better to start with a smaller goal: Build a small robot first, see if you can command it to go to a part of a room in your house (or even a made-up "maze"), and do so reliably - even if you change the layout of the obstacles. In theory, you could start out with a small rover bot with an on-board ultrasonic sensor (perhaps mounted on a servo to pan it).
Even something as seemingly simple as the above is actually much more complex than you think...
For your more ambitious project, you do have the right idea to use some kind of drink holder that can move the can into position for the robot; what I don't understand is why you don't take that to the next level, and make the refrigerator more automated - let it open the door itself on command from the robot. Indeed, you could make a custom refrigerator just for drinks for the robot to fetch (rather than retrofitting a current refrigerator). The more you make the task easier for the robot, the easier it becomes to accomplish that task (and the more difficult it becomes to make the robot do something else, like get you a sandwich from a fridge, for instance).
Wardemon:
I have arduino mega at2560 board as microcontroller and loads of shields ready.
That's probably a good starting point for the "simpler" robot I mentioned you should try first, but for something more complex, your big issue will be memory. Even so, a 2560 can have the SRAM expanded (unlike other Arduino's). I'm not sure if it would ultimately help - honestly, you want a real computer behind the task (but this could also be done wirelessly - the robot doesn't have to carry its brain around).
Wardemon:
- what sensor I should/could use to locate the handle easily?
This would probably be the most difficult task of the entire project, unless you could somehow precisely position the robot (good luck with that) in the same spot so it knew where the handle was in relation to itself; which is why I mentioned having the fridge open the door itself.
Wardemon:
2) when door is open should it be like IR that sends signal to robotic arm IR sensor, that it knows door is open? any ideas are welcome 
Why IR? Why not just have the fridge communicate via wifi, or over a network or something like that? Again, if the fridge can open the door itself, this becomes easier to implement.
Wardemon:
3) how to locate the barcode on can? or is this impossible to make?
Well - if you use a can holder like you said earlier, you know where the can is, and provided you can turn the can so that the barcode can be easily read by the robot (and the barcode is in the same place - this might be more difficult, especially if you decide to use the existing barcode on the can) - you can read it fairly easy with an IR reflective sensor.
Wardemon:
4) how it locates fridge. maybe IR sensor and IR beacon on fridge? any other suggestions? I would like to avoid the line following since lines on floor are not really ideal.
Well - a beacon is one thing, but the bigger question is how does the robot know to get from one room to another? Beacons everywhere? Barcodes on the doorways? What if someone leaves a shoe in the robot's path? Or a chair is moved? Or the dog walks by? Or someone is standing in front of the fridge, rummaging for the last of the mustard?
Also - lines on the floor are one solution - but they don't necessarily have to be visible lines. You could run a signal wire under the floor, or you could paint the line with invisible (but UV sensistive) dye or paint (a UV light would show it - and a sensor sensitive to UV could pick it up). Or, you could have the lines on the ceiling (again - invisible or not) and have a camera or sensor face upward looking for the line. More ambitious would be to have the robot map the rooms as it travels through them, and find a path from one spot to another (this is a simplified explanation of something called SLAM - Simultaneous Localization And Mapping).
Wardemon:
can one mega controller handle that lot even? driving, moving arm, locating, barcode reading etc?
If you made everything really specific to the task, and simplified everything - yes, it might be possible (especially if you added the extra SRAM to the Mega 2560). Of course to do so would also require some intelligence in the fridge (which you are going to need anyhow for the can dispenser). That lower level of intelligence could probably come in the form of a standard Arduino Uno or similar (just something that the robot could command to open the fridge, and it could control the fridge door and the can dispenser device).
Wardemon:
Im sorry Im so newbie on this. I have studied as much as I can but im now trying to order the sensors and I could really use help.
Thank you in advance 
Again - I think this is well out of your reach, right now. I would recommend you give the whole system a LOT more thought, and then focus on the smaller sub-systems. Heck - just build and get working the dispenser - something you can send a simple command (via serial) and have it rotate the can into position. Then something else to open and close the fridge door via serial, and put that on the same device, and stick it in the fridge. Once you can do that, then move on to getting a robot to navigate from one room to another (and to the kitchen with the fridge). Then work on the arm. And so forth.
As already noted, be prepared to spend a long time on this project...