// JavaScript Document

$(document).ready(function(){
	$('#selecionadas').load('index.php?/selecionadas');

	if (location.href == 'http://www.imagemcerta.net/index.php?/cotacao'){
		$('#testt').hide();
	}
	
	$().ajaxStart(function (){
		$('body').attr({'style':'cursor:wait'});
	}).ajaxStop(function (){
		$('body').attr({'style':'cursor:auto'});
	});

	
})

function selecionar(idproduct,filename){
	url = 'index.php?/selecionadas/cart/' + idproduct + '/' + filename;
	$('#selecionadas').load(url,function(){ 
		alert('Imagem selecionada com sucesso!'); 
	});
}

function remover(idproduct){
	$('#selecionadas').load('index.php?/selecionadas/remove/' + idproduct, function(){ 
		alert('Imagem removida com sucesso!'); 
	});
}