ACC SHELL
function goLikeUs() {
window.open("http://facebook.com/EquinoxWheels", "_blank");
}
function goVisitUs() {
window.open("http://www.equinox-bikes.eu/news_detail.php?id=149", "_blank");
}
$(document).ready(function() {
$("a.videoIn").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 680,
'height' : 495,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});
return false;
});
$('a.out').click( function () {
window.open ($(this).attr('href'),"");
return false;
});
$('#menu')
.find('.languages')
.hover(function() {
$(this).addClass('languages-opened');
}, function() {
$(this).removeClass('languages-opened');
});
});
ACC SHELL 2018