$(document).ready(function(){

$("a[rel='group']").colorbox();
$(".single").colorbox();
$(".colorbox").colorbox({width:500});
$(".colorboxOffers").colorbox({width:560});


$(".lang_field_bg").click(function() {
 if ($(this).attr("class") == "lang_field_bg") {
 $(this).addClass("lang_field_bg_active");
 $("#language_container").attr("style", "display:block;");
 } else {
 $(this).removeClass("lang_field_bg_active");
 $("#language_container").attr("style", "display:none;");
 }
 }); 


 }); 


$('.pageTop').click(function(){
	id = $(this).attr('href');
	id=id.substring(1);
	var anchor=$('a[name="'+id+'"]');
	$.scrollTo(anchor.offset().top-19, 1000);
	return false;
});


















