// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults


var number_of_images = 1;

function add_image_field () {
	number_of_images += 1;
	to_add = 'Image: <br /> <input id="image_' + number_of_images + '_uploaded_data" name="image_' + number_of_images + '[uploaded_data]" type="file" size="30"><br />';
	$("blog_form").insert(to_add);
	document.forms[0].number_of_images.value = number_of_images;
}

function view_large_image(the_url, the_large) {
	$('view_large_item').innerHTML = '<a rel="lightbox[gallery]" href="' + the_large + '"><img src="' + the_url + '" /></a>'
	initLightbox();
}

function hide_show_cart() {
	new Effect.toggle('cart_items', 'slide', {duration:0.3});
}