jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
	});
});

function vishovedbilde(id) {
var randomnumber=Math.floor(Math.random()*1111);
 jQuery.ajax({
  type: "GET",
  url: "tom.php",
  dataType: "html",
  contentType: "application/x-www-form-urlencoded;charset=ISO-8859-15",
  data: "bedriftvalg=hovedbilde&id="+id+"&rnd="+randomnumber,
  success: function(response){
   $("#hovedbilde").html(response);
  },
  error: function(){
   alert("Error occured during Ajax request...");
  }
 });
} // END OF FormAjaxStuff()


