MAIL
BOOKMARKS
Skin
Registrati
Accedi
Excite
Nel Sito
Web
Immagini
Video
News
tutto il Web
solo in italiano
$(document).ready(function() {
if (typeof redirect == 'undefined') {
redirect = true;
}
setSearch($('#srch').attr('action'));
tabs = new Array();
tabs['#sr1'] = '';
tabs['#sr2'] = _('_COMMON_URL_SEARCH_WEB');
tabs['#sr3'] = _('_COMMON_URL_SEARCH_IMAGE');
tabs['#sr4'] = _('_COMMON_URL_SEARCH_VIDEO');
tabs['#sr5'] = _('_COMMON_URL_SEARCH_NEWS');
for (tab in tabs) {
$(tab).click(function(e) {
e.preventDefault();
current = '#' + $(e.target).attr('id');
setSearch(tabs[current]);
if (redirect && $.trim($('#qsearch').val()) != '') {
$('#srch').submit();
}
});
}
});
function setSearch(formAction) {
$('#qwhere').css('display', 'none');
$($('#srch input[name=\'l\']')[0]).attr('disabled', true);
$($('#srch input[name=\'l\']')[1]).attr('disabled', true);
$('#sr1, #sr2, #sr3, #sr4, #sr5').attr('class', 'type');
switch (formAction) {
case _('_COMMON_URL_SEARCH_WEB'):
$('#srch').attr('action', mainSearchSite + 'web/');
$('#sr2').attr('class', 'type active');
$('#qsub').val(_('HEADER_SEARCH_BUTTON_WEB'));
$('#qwhere').css('display', 'block');
$($('#srch input[name=\'l\']')[0]).attr('disabled', false);
$($('#srch input[name=\'l\']')[1]).attr('disabled', false);
break;
case _('_COMMON_URL_SEARCH_IMAGE'):
$('#srch').attr('action', mainSearchSite + 'image/');
$('#sr3').attr('class', 'type active');
$('#qsub').val(_('HEADER_SEARCH_BUTTON_IMAGE'));
break;
case _('_COMMON_URL_SEARCH_VIDEO'):
$('#srch').attr('action', mainSearchSite + 'video/');
$('#sr4').attr('class', 'type active');
$('#qsub').val(_('HEADER_SEARCH_BUTTON_VIDEO'));
break;
case _('_COMMON_URL_SEARCH_NEWS'):
$('#srch').attr('action', mainSearchSite + 'news/');
$('#sr5').attr('class', 'type active');
$('#qsub').val(_('HEADER_SEARCH_BUTTON_NEWS'));
break;
default:
action = mainSearchSite + 'sitesearch/';
$('#srch').attr('action', action);
$('#sr1').attr('class', 'type active');
$('#qsub').val(_('HEADER_SEARCH_BUTTON_SITE'));
break;
}
}
Canali
Chiudi X
Adsl
Blog
Calcio
Casa
Cashback
Cinema
Finanza
Incontri
Lavoro
Mappe
Meteo
Mobile
Mondiali 2010
Motori
Mutui
Natale
Oroscopo
Politica
San Valentino
Tag
MAGAZINE
VIDEO
WEB2.0
MUSICA
GOSSIP
LEI
SPORT
VIAGGI
CALENDARI
SEXCITY
BYNIGHT
Videogiochi
Altri
Pc
Nintendo Wii
Nintendo DS
Playstation 3
PSP
Xbox 360
Trailer
Videogiochi
Blog di notizie, trucchi ed effetti speciali per il piacere di videogiocare
function showOtherLinksLayer(opener)
{
var opener = document.getElementById('otherLinksLayerOpener');
var x = findPosX(opener);
var y = findPosY(opener);
var item = document.getElementById("otherLinksLayer");
item.style.zIndex = 100000000;
item.style.left = (x - getWidth(item) + getWidth(opener)) + "px";
item.style.top = (y + getHeight(opener)) + "px";
item.style.display='block';
xb.addEvent(item, "mouseleave", delayHideOtherLinksLayer, false);
}
function hideOtherLinksLayer()
{
var item = document.getElementById("otherLinksLayer");
xb.removeEvent(item, "mouseleave", delayHideOtherLinksLayer, false);
document.getElementById("otherLinksLayer").style.display = 'none';
return false;
}
function delayHideOtherLinksLayer(e)
{
var delay = 3000;
setTimeout("hideOtherLinksLayer()", delay);
}
/* HELPER FUNCTIONS */
function IE() { return !!(window.attachEvent && !window.opera); }
function FF() { return (navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1); }
function OP() { return !!window.opera; }
function findPosX(obj)
{
var curleft = 0;
if(obj.offsetParent)
while(1)
{
curleft += obj.offsetLeft;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
else if(obj.x)
curleft += obj.x;
return curleft;
}
function findPosY(obj)
{
var curtop = 0;
if(obj.offsetParent)
while(1)
{
curtop += obj.offsetTop;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
else if(obj.y)
curtop += obj.y;
return curtop;
}
function getDimensions(element)
{
// All *Width and *Height properties give 0 on elements with display none,
// so enable the element temporarily
var els = element.style;
var originalVisibility = els.visibility;
var originalPosition = els.position;
var originalDisplay = els.display;
els.visibility = 'hidden';
els.position = 'absolute';
els.display = 'block';
var originalWidth = element.clientWidth;
var originalHeight = element.clientHeight;
els.display = originalDisplay;
els.position = originalPosition;
els.visibility = originalVisibility;
return {width: originalWidth, height: originalHeight};
}
function getHeight(element) {
var dims = getDimensions(element);
return dims.height;
}
function getWidth(element) {
var dims = getDimensions(element);
return dims.width;
}
var xb =
{
evtHash: [],
ieGetUniqueID: function(_elem)
{
if (_elem === window) { return 'theWindow'; }
else if (_elem === document) { return 'theDocument'; }
else { return _elem.uniqueID; }
},
addEvent: function(_elem, _evtName, _fn, _useCapture)
{
if (typeof _elem.addEventListener != 'undefined')
{
if (_evtName == 'mouseenter')
{ _elem.addEventListener('mouseover', xb.mouseEnter(_fn), _useCapture); }
else if (_evtName == 'mouseleave')
{ _elem.addEventListener('mouseout', xb.mouseEnter(_fn), _useCapture); }
else
{ _elem.addEventListener(_evtName, _fn, _useCapture); }
}
else if (typeof _elem.attachEvent != 'undefined')
{
var key = '{FNKEY::obj_' + xb.ieGetUniqueID(_elem) + '::evt_' + _evtName + '::fn_' + _fn + '}';
var f = xb.evtHash[key];
if (typeof f != 'undefined')
{ return; }
f = function()
{
_fn.call(_elem);
};
xb.evtHash[key] = f;
_elem.attachEvent('on' + _evtName, f);
// attach unload event to the window to clean up possibly IE memory leaks
window.attachEvent('onunload', function()
{
_elem.detachEvent('on' + _evtName, f);
});
key = null;
//f = null; /* DON'T null this out, or we won't be able to detach it */
}
else
{ _elem['on' + _evtName] = _fn; }
},
removeEvent: function(_elem, _evtName, _fn, _useCapture)
{
if (typeof _elem.removeEventListener != 'undefined')
{ _elem.removeEventListener(_evtName, _fn, _useCapture); }
else if (typeof _elem.detachEvent != 'undefined')
{
var key = '{FNKEY::obj_' + xb.ieGetUniqueID(_elem) + '::evt' + _evtName + '::fn_' + _fn + '}';
var f = xb.evtHash[key];
if (typeof f != 'undefined')
{
_elem.detachEvent('on' + _evtName, f);
delete xb.evtHash[key];
}
key = null;
//f = null; /* DON'T null this out, or we won't be able to detach it */
}
},
mouseEnter: function(_pFn)
{
return function(_evt)
{
var relTarget = _evt.relatedTarget;
if (this == relTarget || xb.isAChildOf(this, relTarget))
{ return; }
_pFn.call(this, _evt);
}
},
isAChildOf: function(_parent, _child)
{
if (_parent == _child) { return false };
while (_child && _child != _parent)
{ _child = _child.parentNode; }
return _child == _parent;
}
};
L'Italia fanalino di coda nei videogiochi
13:02 mer 30/06/10
Solo il 17% degli italiani ha trascorso il suo tempo libero davanti ai giochi elettronici, la causa di questi numeri bassi è da ricercarsi nella pirateria
>>
Tags:
videogiochi
videogiochi online
giochi online
Videogamers in Europe 2010
AESVI
I giochi più attesi del 2010
12:15 lun 21/06/10
Si è conclusa a Los Angeles la fiera più importante per l'industria dei videogiochi all'insegna del 3D e di nuovi titoli per gli appassionati
>>
Tags:
videogiochi
videogiochi 3D
Psp3
E3
Electronic Entertainment Expo
GT5
Assassin's Creed: Brotherhood
Killzone 3
Epic Mickey
Tron Evolution
Zelda Skyward Sword
Halo Reach
Fable III
Dead Space 2
True Crime: Hong Kong
Xbox 360
Wii
Arriva Kinect, il nuovo modo di giocare di Microsoft
10:05 mar 15/06/10
Un sistema di telecamere e microfoni consente di interagire con i giochi permettendo un'esperienza di gioco svincolata dall'uso di supporti fisici
>>
Tags:
Kinect
Kinetc Microsoft
Project Natal
E3
Microsoft
videogiochi
novità videogiochi
Nintendo DS sperimenta il 3D
15:07 mer 24/03/10
Nuova rivoluzione per le console portatili che utilizzeranno una nuova visone di gioco
>>
Tags:
Nintendo
Nintendo DS
Nintendo 3DS
videogiochi 3D
playstation 3D
Sony
3D
GTA Chinatown Wars arriva su iPhone
14:27 mer 09/09/09
Nuovo gameplay e nuovo concept di gioco per le periferiche Apple
>>
Tags:
GTA Chinatown Wars
Grand Theft Auto
Rockstar Games
iphone
ipod touch
timbaland
Beaterator
La demo di Uncharted 2 la prossima settimana
14:50 lun 07/09/09
1 Commenti
Un'anticipazione sulla modalità multiplayer del gioco più atteso dell'anno
>>
Tags:
Uncharted 2
PS£
Playstation 3
Naughty Dog
PSN
Il 74% dei possessori di PS3 hanno visto un Blu-Ray
15:25 gio 03/09/09
Uno dei motivi di acquisto della console Sony è sicuramente il lettore Blu-Ray integrato
>>
Tags:
Playstation 3
Ps3
PlayStation Network
PSN. Playstation Store
Eric Lempel
Il seguito di Okami confermato da Capcom
16:07 mer 02/09/09
Okamiden: Chiisaki Taiyo arriverà su DS nel 2010
>>
Tags:
Okami
Okamiden: Chiisaki Taiyo
Nintendo DS
Capcom
La pubblicità entra nei Videogiochi
09:35 mar 01/09/09
1 Commenti
Guitar Hero 5, DJ Hero, Tony Hawk Ride avranno alcuni sponsor al loro interno
>>
Tags:
Guitar Hero 5
DJ Hero
Tony Hawk Ride
Microsoft
Xbox 360
Le Nazioni Unite contro i videogiochi pornografici
09:53 lun 31/08/09
Lo scandalo in Giappone sui videogiochi dedicati agli stupri non si ferma
>>
Tags:
Videogiochi porno
Rapelay
Nazioni Unite
Censura Videogiochi
videogiochi violenti
« precedente
successiva »
Tutti i contenuti di "Videogiochi":
RSS
Tag più popolari
console
console videogiochi
Dante's Inferno
guitar hero
Microsoft
multiplayer
Nintendo DS
Play Station 2
Playstation
PS2
Rock Band
videogame
videogiochi
virus
Weezer
X Box 360
Xbox
Xbox 360
Xbox 360 Live
Xbox Live
Cerca tag:
Ultime fotogallery
E3 Expo, il fenomeno 'booth girls'
Kinect, il nuovo sistema di controllo Microsoft
Dante's Inferno
Heidi Klum si spoglia per Guitar Hero
Nuova immagine per la PSP 3000
Il servizio Avatar Xbox 360
La PSP 3000
Resistance Retribution: le prime immagini
Screenshot di Spyborgx
Nuove immagini per Ferrari Challenge
I nuovi screenshoot di Dark Void
Atari 2600 al Koppa’s Farwell Foods
Ultimi commenti
Ciao
Il mio nome è Giulietta, ero... »
juliet2010 (04-08-2010 22:13:21)
SNAKE 90 SI UN CUGHIUNE TO PATRE TI DOVEVA... »
liquid999 (18-07-2010 01:09:04)
io sono un grandissimo fan di mgs e ho... »
big-boss96 (07-07-2010 11:51:25)
io ho cpmpletato il 1e il 2 per msx poi tutti... »
big-boss96 (07-07-2010 11:46:19)
io metal gear solid 4 cè l'ho già... »
antonio2c (06-04-2010 13:56:32)
uscirà ne sono sicuro e poi la ps3 costa... »
antonio2c (06-04-2010 13:55:25)
ci mancava... »
bynightstaff (10-02-2010 11:04:01)
Come stai? Immagino che stanno bene e del buon... »
verobee (15-12-2009 17:53:45)
fottiti ragazzino »
raul96 (06-11-2009 23:56:09)
viva maasterchief »
raresangheili (20-10-2009 20:47:25)
GA_googleFillSlot("excite_it_300x250_videogiochi");
var trackingDiv = '300 ADSENSE VIDEOG';
<<
Settembre
L
M
M
G
V
S
D
00
00
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
00
00
00
Ultimi sondaggi
Comprerai Dante's Inferno?
Leggi anche
Doppia Arma in Modern Warfare 2
Un nuovo controller per la Wii
Diablo III sarà censurato
Una settimana caldissima per i videogiochi
Silent Hunter 5 annunciato ufficialmente
PS3 Slim la nuova Playstation 3
Bethesda non rinuncia ad Elder Scrolls
Un nuovo videogioco per CSI
FIFA 10 presenta una lunga serie di miglioramenti
Il ritorno di Metal Gear Solid
SITE:
Chi siamo
Scrivi
Aiuto
Liberatoria
Excite RSS
Sitemap
Registrati
NETWORK:
Excite UK
Excite Deutschland
Excite España
Excite France
Excite Japan
Excite Nederland
Excite USA
Copyright ©1995 - 2010
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
var pageTracker = _gat._getTracker("UA-10860354-16");
pageTracker._setDomainName(".excite.it");
pageTracker._trackPageview();
}
catch(err) {}
setTimeout(function()
{
var url = "http" +
(/https:/.test(document.location.href) ? "s" : "") +
"://beacon.scorecardresearch.com/scripts/beacon.dll" +
"?c1=2&c2=6035239&c3=&c4=videogiochi.excite.it/&c5=&c6=&c7=" + escape(document.location.href) +
"&c8=" + escape(document.title) +
"&c9=" + escape(document.referrer) +
"&c10=" + escape(screen.width+'x'+screen.height) +
"&c15=" +
"&rn=" + (new Date()).getTime();
var i = new Image();
i.src = url;
}, 1);
|